Enum GridSelectionFlags
Defines behavior for selecting cells for the grid by the user with mouse or keyboard.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
[Flags]
public enum GridSelectionFlags
Remarks
See AllowSelection.
Fields
Name | Description |
---|---|
AlphaBlend | Use alpha blending to highlight selected cells. |
Any | Default behavior for selecting cells: Rows, Columns, Table, Cell, Multiple, Extends Shift Key support, and alphablending. |
Cell | Individual cells can be selected. |
Column | Columns can be selected. |
Keyboard | Allow extend existing selection when user holds Shift Key and arrow keys. |
MixRangeType | Allow both rows and columns to be selected at same time when Multiple is specified. By default, the grid does not allow having rows and column ranges be selected at the same time. |
Multiple | Multiple ranges of cells can be selected. The user has to press Control Key to select multiple ranges. |
None | Disable selecting cells. |
Row | Rows can be selected. |
Shift | Allow extend existing selection when user holds Shift Key and clicks on a cell. |
Table | Whole table can be selected. |