Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.SelectMode Property

Gets or sets the selection mode.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.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