PivotGridFieldCollection.Item[String] Property
In This Article
Gets the PivotGridField object specified by the bound field name.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.2.dll
NuGet Package: DevExpress.Win.PivotGrid
#Declaration
[EditorBrowsable(EditorBrowsableState.Always)]
public PivotGridField this[string fieldName] { get; }
#Parameters
Name | Type | Description |
---|---|---|
field |
String | A string value specifying the bound field name of the required Pivot |
#Property Value
Type | Description |
---|---|
Pivot |
The Pivot |
#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