Skip to main content

ASPxPivotGrid.GetFieldValueType(PivotGridField, Int32) Method

Gets the type of a specific column/row field’s value.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public PivotGridValueType GetFieldValueType(
    PivotGridField field,
    int cellIndex
)

Parameters

Name Type Description
field PivotGridField

A PivotGridField object that refers to the required field.

cellIndex Int32

A zero-based index of a column/row that identifies the required field value.

Returns

Type Description
PivotGridValueType

A PivotGridValueType value that idenfifies the type of the required column/row field value.

Remarks

To obtain the type of a row field value, specify the absolute index of the row via the cellIndex parameter. Use the ASPxPivotGrid.GetAbsoluteRowIndex method to obtain the absolute row index by its index within the current page.

See Also