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

PivotGridFieldCollection.Item[String] Property

Gets the PivotGridField object specified by the bound field name.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

public PivotGridField this[string fieldName] { get; }

Parameters

Name Type Description
fieldName String

A string value specifying the bound field name of the required PivotGridField object.

Property Value

Type Description
PivotGridField

The PivotGridField object bound to the specified field.

Remarks

This method searches the collection for the PivotGridField object whose PivotGridFieldBase.FieldName property’s value matches the parameter’s value. If such an object is not found the indexer returns null.

See Also