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

PivotGridGroup.Area Property

Gets the area of the pivot grid in which the group is displayed.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

[Browsable(false)]
public PivotArea Area { get; }

Property Value

Type Description
PivotArea

A PivotArea enumeration value which specifies the area in which the group is displayed.

Available values:

Name Description
RowArea

Corresponds to the Row Header Area.

ColumnArea

Corresponds to the Column Header Area.

FilterArea

Corresponds to the Filter Header Area.

DataArea

Corresponds to the Data Header Area.

Remarks

A group can be placed within one of four areas: Filter Header Area, Column Header Area, Row Header Area or Data Header Area. The Area property allows the area in which the group is displayed to be obtained.

Specifically, the Area property returns the value of the PivotGridFieldBase.Area property of the first field within the group. If the group is empty, the Area property returns the PivotArea.FilterArea value.

See Also