Skip to main content

PivotCellBaseEventArgs.IsFieldValueRetrievable(PivotGridField) Method

Gets whether the value of the specified column or row field can be retrieved for the current cell by the PivotCellBaseEventArgs.GetFieldValue method.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public bool IsFieldValueRetrievable(
    PivotGridField field
)

Parameters

Name Type Description
field PivotGridField

A PivotGridField object which identifies the column or row field.

Returns

Type Description
Boolean

true if the specified field’s value can be retrieved via the PivotCellBaseEventArgs.GetFieldValue method; otherwise, false.

Remarks

Each cell in the Data Area is identified by particular column and row fields. The IsFieldValueRetrievable method determines whether the value of a specific column/row field can be retrieved for the current cell via the PivotCellBaseEventArgs.GetFieldValue method. The hierarchical data representation in the DXPivotGrid control is taken into account while evaluating the resultant value.

See Also