Skip to main content

PivotDrillDownDataSource.GetValue(Int32, PivotGridField) Method

Gets the value of the specified field in the specified row.

Namespace: DevExpress.Xpf.PivotGrid

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

#Declaration

public object GetValue(
    int rowIndex,
    PivotGridField field
)

#Parameters

Name Type Description
rowIndex Int32

The zero-based index of the required row.

field PivotGridField

A PivotGridField object which represents the required field.

#Returns

Type Description
Object

An object which represents the value of the specified field in the specified row.

#Remarks

The number of rows is determined by the RowCount property. So the rowIndex parameter can vary between 0 and RowCount - 1.

This method overload is not supported in OLAP mode.

See Also