Skip to main content

PivotFieldValueEventArgsBase<T>.GetHigherLevelFieldValue(T) Method

Returns the value of a specific parent field corresponding to the field value currently being processed.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

public object GetHigherLevelFieldValue(
    T field
)

Parameters

Name Type Description
field T

A PivotGridFieldBase class descendant that specifies the parent field whose value is returned.

Returns

Type Description
Object

An object that specifies the value of the parent field.

Remarks

To obtain the list of higher level fields for the field value currently being processed, use the PivotFieldValueEventArgsBase<T>.GetHigherLevelFields method. The GetHigherLevelFieldValue method allows values of these fields to be retrieved.

See Also