PivotGridFieldCollection.Item[String] Property
Gets the PivotGridField object specified by the bound field name.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v25.2.dll
NuGet Package: DevExpress.Win.PivotGrid
Declaration
[EditorBrowsable(EditorBrowsableState.Always)]
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