'Declaration <DescriptionAttribute("The selection mode of the grid.")> <CategoryAttribute("Behavior")> Public Property SelectionMode As SelectionMode
'Usage Dim instance As GridControl Dim value As SelectionMode instance.SelectionMode = value value = instance.SelectionMode
[Description("The selection mode of the grid.")] [Category("Behavior")] public SelectionMode SelectionMode {get; set;}
Property Value
One of the SelectionMode values.MultiExtended | Multiple items can be selected, and the user can use the SHIFT, CTRL, and arrow keys to make selections. |
MultiSimple (default) | Multiple items can be selected. |
None | No items can be selected. |
One | Only one item can be selected. |