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

PivotGridFieldOptions.AllowExpand Property

Gets or sets whether an end-user is allowed to expand/collapse the rows or columns which correspond to the current field.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v20.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.WindowsDesktop.PivotGrid.Core

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean AllowExpand { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A DefaultBoolean enumeration value which specifies whether end-users can expand/collapse the field’s rows or columns.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowExpand
Cross-Platform Class Library PivotGridFieldBase
.Options .AllowExpand
WinForms Controls PivotGridField
.Options .AllowExpand
Reporting XRPivotGridField
.Options .AllowExpand
ASP.NET MVC Extensions MVCxPivotGridField
.Options .AllowExpand
ASP.NET Web Forms Controls PivotGridField
.Options .AllowExpand

Remarks

This property is in effect for fields displayed within the Column Header Area and Row Header Area. It specifies whether expand buttons are displayed within Field Value boxes and thus it determines whether an end-user can expand/collapse specific rows/columns.

If the AllowExpand property is set to DefaultBoolean.Default the ability to expand/collapse rows/columns is determined by the control’s PivotGridOptionsCustomization.AllowExpand property.

Set the AllowExpand property to DefaultBoolean.False to prevent an end-user from expanding/collapsing the corresponding rows/columns.

If the AllowExpand property is set to DefaultBoolean.True an end-user can expand/collapse the corresponding rows/columns regardless of the PivotGridOptionsCustomization.AllowExpand property’s value.

See Also