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

VGridOptionsSelectionAndFocus.MultiSelectMode Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

[DefaultValue(MultiSelectMode.RecordSelect)]
[XtraSerializableProperty]
public MultiSelectMode MultiSelectMode { get; set; }

Property Value

Type Default Description
MultiSelectMode **RecordSelect**

A value that specifies whether multiple records, rows or cells can be selected.

Available values:

Name Description
RecordSelect

Enables selection of multiple records.

CellSelect

Enables selection of multiple blocks of cells.

RowSelect

Enables selection of multiple rows.

Property Paths

You can access this nested property as listed below:

Object Type Path to MultiSelectMode
PropertyGridControl
.OptionsSelectionAndFocus.MultiSelectMode
VGridControl
.OptionsSelectionAndFocus.MultiSelectMode
VGridControlBase
.OptionsSelectionAndFocus.MultiSelectMode

Remarks

Multiple record/row/cell selection is allowed, and therefore the MultiSelectMode property is in effect if the VGridOptionsSelectionAndFocus.MultiSelect property is set to true. See this topic to learn more.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MultiSelectMode property.

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