Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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