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

IThreadSafeField.AllowedAreas Property

Gets areas within which the field can be positioned.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

PivotGridAllowedAreas AllowedAreas { get; }

Property Value

Type Description
PivotGridAllowedAreas

A PivotGridAllowedAreas value that specifies in which areas the field can be positioned.

Available values:

Name Description
All

Specifies that a field can be positioned within any area.

RowArea

Specifies that a field can be positioned within the Row Header Area.

ColumnArea

Specifies that a field can be positioned within the Column Header Area.

FilterArea

Specifies that a field can be positioned within the Filter Header Area.

DataArea

Specifies that a field can be positioned within the Data Header Area.

Remarks

The AllowedAreas property provides thread-safe access to the field’s PivotGridFieldBase.AllowedAreas property. To learn more, see PivotGridFieldBase.AllowedAreas.

Use the AllowedAreas property when handling events in asynchronous mode. For more information, see Asynchronous Mode.

See Also