TableView.MultiSelectMode Property
OBSOLETE
Use the Selection
Gets or sets whether multiple row/cell selection is enabled. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
[Obsolete("Use the DataControlBase.SelectionMode property instead")]
[Browsable(false)]
public TableViewSelectMode MultiSelectMode { get; set; }
#Property Value
Type | Description |
---|---|
Table |
A Table |
Available values:
Name | Description |
---|---|
None | Multi-selection is disabled. |
Row | Allows selection of multiple rows. |
Cell | Allows selection of multiple cells. |
#Remarks
Multiple row/cell selection isn’t allowed if the DataViewBase.NavigationStyle property is set to GridViewNavigationStyle.None and/or the MultiSelectMode property is set to TableViewSelectMode.None. To enable multiple row selection, set the MultiSelectMode property to TableViewSelectMode.Row. Multiple cell selection (block selection) is enabled by setting the MultiSelectMode property to TableViewSelectMode.Cell.
Refer to the Row Selection and Cell Selection topics for more information.