Skip to main content

XRPivotGridFieldCollection.Item[String] Property

Gets the XRPivotGridField object specified by the field name.

Namespace: DevExpress.XtraReports.UI.PivotGrid

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public XRPivotGridField this[string fieldName] { get; }

Parameters

Name Type Description
fieldName String

A String value specifying the field name of the required XRPivotGridField object.

Property Value

Type Description
XRPivotGridField

An XRPivotGridField object bound to the specified field.

Remarks

This method searches the collection for the XRPivotGridField 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