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

PivotGridGroup.Item[Int32] Property

Provides indexed access to the fields in the group.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

public PivotGridFieldBase this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value specifying the zero-based index of the required field. If it’s negative or exceeds the maximum available index, an exception is raised.

Property Value

Type Description
PivotGridFieldBase

A PivotGridFieldBase descendant which represents the field in the group.

Remarks

Groups hold their fields within the PivotGridGroup.Fields collection. The Item property allows individual fields to be accessed using index notation.

See Also