Skip to main content
A newer version of this page is available. .

PivotGridOptionsCustomization.AllowExpandOnDoubleClick Property

Gets or sets whether field values are expanded/collapsed on a double click.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public bool AllowExpandOnDoubleClick { get; set; }

Property Value

Type Default Description
Boolean **true**

true if field values are expanded/collapsed on a double click; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowExpandOnDoubleClick
WinForms Controls PivotGridControl
.OptionsCustomization.AllowExpandOnDoubleClick
Reporting XRPivotGrid
.OptionsCustomization.AllowExpandOnDoubleClick
ASP.NET Web Forms Controls ASPxPivotGrid
.OptionsCustomization.AllowExpandOnDoubleClick
MVCxPivotGrid
.OptionsCustomization.AllowExpandOnDoubleClick
PivotGridSettings
.OptionsCustomization.AllowExpandOnDoubleClick

Remarks

To specify whether end-users are allowed to expand and collapse field values, use the PivotGridOptionsCustomization.AllowExpand property (or the PivotGridFieldOptions.AllowExpand property of individual fields).

If expanding/collapsing field values is disabled via the PivotGridOptionsCustomization.AllowExpand (or PivotGridFieldOptions.AllowExpand) property, a double click on a field value has no effect, regardless of the AllowExpandOnDoubleClick property value.

See Also