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

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.v18.2.Core.dll

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