BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
grid.TableOptions.AllowSelection = GridSelectionFlags.None;
grid.TableOptions.ListBoxSelectionMode = (something other than None);
The other selection support is the support that is inherited from GridControlBase. This support will let you select any set of cells depending upon the setting specified in grid.TableOptions.AllowSelections. You also have to set grid.TableOptions.ListBoxSelectionMode = None. But this inherited selection techniques is only reasonable for simple flat tables. It does not have any knowledge of groups or nested tables. But it will allow you to select columns in flat tables if that is what you want.
>grid.TableOptions.AllowSelection = GridSelectionFlags.None;
>grid.TableOptions.ListBoxSelectionMode = (something other than None);
>
>
>The other selection support is the support that is inherited from GridControlBase. This support will let you select any set of cells depending upon the setting specified in grid.TableOptions.AllowSelections. You also have to set grid.TableOptions.ListBoxSelectionMode = None. But this inherited selection techniques is only reasonable for simple flat tables. It does not have any knowledge of groups or nested tables. But it will allow you to select columns in flat tables if that is what you want.