Skip to main content

PivotFieldImageIndexThreadSafeEventArgs.GetHigherLevelFields() Method

Returns the parent field(s) for the field value being currently processed.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v23.2.dll

NuGet Package: DevExpress.Win.PivotGrid

Declaration

public IThreadSafeField[] GetHigherLevelFields()

Returns

Type Description
IThreadSafeField[]

An array of objects that implement the IThreadSafeField interface. These objects specify parent fields for the field value currently being processed.

Remarks

Consider the following example:

GetHigherLevelFields

  • For the ‘1994’ and ‘Andrew Fuller’ field values, the GetHigherLevelFields method returns an empty array.
  • For the ‘Qtr4’ field value, the GetHigherLevelFields method returns an array consisting of a single element referring to the Year field.
  • For the ‘Confections’ field value in the last row, the GetHigherLevelFields method returns an array consisting of a single element referring to the Sales Person field.
See Also