Skip to main content

PivotGridControl.SelectMode Property

Gets or sets the selection mode.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public SelectMode SelectMode { get; set; }

Property Value

Type Description
SelectMode

A SelectMode enumeration value that specifies the selection mode.

Available values:

Name Description
None

Multiple cell selection is disabled.

SolidSelection

An end-user can select a continuous block of cells.

MultiSelection

An end-user can select several blocks of cells.

Remarks

If the SelectMode property is set to ‘SolidSelection’, an end-user can select a continuous block of cells. To obtain selected cells, use the PivotGridControl.Selection property. The Left and Top members of the PivotGridControl.Selection property identify the column index and row index of the left-topmost selected cell. The Width and Height members specify the number of selected columns and rows, respectively.

pivotgrid_solidselection

If the SelectMode property is set to ‘MultiSelection’, a user can select several blocks of cells via the mouse with the Ctrl key pressed down. In this instance, to obtain selected cells, use the PivotGridControl.MultiSelection property.

pivotgrid_multiselection

To disable multiple cell selection, set the SelectMode property to ‘None’.

See Also