Skip to main content
A newer version of this page is available. .

GridMultiSelectMode Enum

Lists values that specify whether multiple cells or rows can be selected.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v17.2.dll

Declaration

public enum GridMultiSelectMode

Members

Name Description
RowSelect

Multiple rows can be selected via the mouse and keyboard. Individual cells cannot be selected.

GridMultiSelectMode_Row

CellSelect

Individual cells and blocks of cells can be selected. This option is not supported in Advanced Banded Grid Views.

GridMultiSelectMode_Cell

CheckBoxRowSelect

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.

GridMultiSelectMode_Row_CheckBox

Note

The BandedGridView and AdvBandedGridView Views do not support this selection mode.

Related API Members

The following properties accept/return GridMultiSelectMode values:

Remarks

The values listed by this enumeration are used to set the GridOptionsSelection.MultiSelectMode property. Note the ColumnViewOptionsSelection.MultiSelect option must be set to true to allow multiple row (cell) selections.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GridMultiSelectMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also