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

ASPxPivotGrid.GetFieldValueType(Boolean, Int32) Method

Gets the type of a field value in the column or row area.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public PivotGridValueType GetFieldValueType(
    bool isColumn,
    int cellIndex
)

Parameters

Name Type Description
isColumn Boolean

true to retrieve information on a field value in the column area; false to retrieve information on a field value in the row area.

cellIndex Int32

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

Returns

Type Description
PivotGridValueType

A PivotGridValueType value that identifies 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