C1.Win.FlexGrid Namespace / C1FlexGrid Class / SelectionMode Property

In This Topic
SelectionMode Property (C1FlexGrid)
In This Topic
Gets or sets the grid's selection behavior.
Syntax
'Declaration
 
Public Property SelectionMode As SelectionModeEnum
 
Remarks

In most selection modes, you can obtain the current selection using the C1FlexGridBase.Selection property.

When C1FlexGridBase.SelectionMode is set to SelectionModeEnum.ListBox, however, the selection may consist of a non-continuous range of rows. In this case, you can check the selection state of individual rows using the CellStyleCollection.Highlight property or obtain a collection of selected rows using the RowCollection.Selected property.

See Also