Skip to main content

PivotGridControl.MultiSelection Property

Gets the selected cells.

Namespace: DevExpress.Xpf.PivotGrid

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

#Declaration

[Browsable(false)]
public IMultipleSelection MultiSelection { get; }

#Property Value

Type Description
IMultipleSelection

An object that implements the IMultipleSelection interface and represents the pivot grid's selection.

#Remarks

If the PivotGridControl.SelectMode property is set to 'MultiSelection', a user can select several blocks of cells via the mouse with the Ctrl key pressed down. Use the MultiSelection property to obtain selected cells.

pivotgrid_multiselection

If the PivotGridControl.SelectMode property is set to 'SolidSelection', an end-user can select a continuous block of cells. In this instance, use the PivotGridControl.Selection property to obtain selected cells.

See Also