 | GridMultiSelectMode Enumeration |
Lists values that specify whether multiple cells or rows can be selected
Namespace:
EBP.Api.Interfaces.Controls.DataGrid
Assembly:
EBP.Api.Common (in EBP.Api.Common.dll) Version: 1.0.2835.45 (1.0.2835.45)
Syntaxpublic enum GridMultiSelectMode
Public Enumeration GridMultiSelectMode
Members
| Member name | Value | Description |
---|
| RowSelect | 0 |
Multiple rows can be selected via the mouse and keyboard. Individual cells cannot be selected.
|
| CellSelect | 1 |
Individual cells and blocks of cells can be selected. This option is not
supported in Advanced Banded Grid Views.
|
| CheckBoxRowSelect | 2 |
Multiple rows can be selected via the mouse, keyboard and built-in Check
column (which displays check boxes in each row). Individual cells cannot be selected.
The DevExpress.XtraGrid.Views.BandedGrid.BandedGridView and DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView
Views do not support this selection mode.
|
See Also