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

IThreadSafeFieldCollection.Item[String] Property

Provides access to individual fields within the collection by the name of the bound data source field.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

IThreadSafeField this[string fieldName] { get; }

Parameters

Name Type Description
fieldName String

A String that specifies the name of the bound data source field.

Property Value

Type Description
IThreadSafeField

An object that implements the IThreadSafeField interface. Provides thread safe read-only access to basic field settings.

Remarks

If there are several fields with the same name in the collection (for example, the GroupInterval feature is used), the first found field will be returned.

You can also use indexed notation to access individual fields.

To obtain the number of fields in the collection, use the IThreadSafeFieldCollection.Count property.

See Also