Skip to main content

PivotCustomDrawBaseThreadSafeEventArgs.Fields Property

Provides thread safe access to a pivot grid field collection.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v23.2.dll

NuGet Package: DevExpress.Win.PivotGrid

Declaration

public IThreadSafeFieldCollection Fields { get; }

Property Value

Type Description
IThreadSafeFieldCollection

An object that implements the IThreadSafeFieldCollection interface. Provides thread safe read-only access to the collection of fields.

Remarks

Individual fields can be accessed using indexed notation or the bound field name as parameters. If the bound field name is used as an indexer and there are several fields with the same name (for example, the GroupInterval feature is used), the first field found in the collection will be returned.

To access a collection of field groups, use the PivotCustomDrawBaseThreadSafeEventArgs.Groups property.

See Also