Skip to main content
All docs
V19.1

AdvBandedGridOptionsSelection.MultiSelectMode Property

Gets or sets whether multiple cells or rows can be selected.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[Browsable(false)]
public override GridMultiSelectMode MultiSelectMode { get; set; }

Property Value

Type Description
GridMultiSelectMode

A GridMultiSelectMode enumeration value which specifies whether multiple cells or rows can be selected.

Available values:

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to MultiSelectMode
AdvBandedGridView
.OptionsSelection.MultiSelectMode

Remarks

Multiple cell selection (block selection) is not allowed in Advanced Banded Grid Views. The MultiSelectMode property overrides the base class GridOptionsSelection.MultiSelectMode property to return the GridMultiSelectMode.RowSelect value. Setting the MultiSelectMode property to a different value has no effect.

See Also