Back to Devexpress

PivotGridControl.SelectMode Property

wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotgridcontrol-a23794ef.md

latest2.4 KB
Original Source

PivotGridControl.SelectMode Property

Gets or sets the selection mode.

Namespace : DevExpress.Xpf.PivotGrid

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

NuGet Package : DevExpress.Wpf.PivotGrid

Declaration

csharp
public SelectMode SelectMode { get; set; }
vb
Public Property SelectMode As SelectMode

Property Value

TypeDescription
SelectMode

A SelectMode enumeration value that specifies the selection mode.

|

Available values:

NameDescription
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.

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.

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

See Also

PivotGridControl Class

PivotGridControl Members

DevExpress.Xpf.PivotGrid Namespace