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

PivotCustomDrawCellBaseEventArgs.GetPrevColumnCellValue(PivotGridField) Method

Returns the value of the cell located in the previous column of the current row.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public object GetPrevColumnCellValue(
    PivotGridField dataField
)

Parameters

Name Type Description
dataField PivotGridField

A PivotGridField object that specifies the data field against which the required cell value is calculated.

Returns

Type Description
Object

The value of the cell located in the previous column of the current row.

Remarks

The dataField parameter specifies a field located in the Data Header Area. If several fields are located in this area, this parameter identifies a data field against which the required cell value is calculated.

GetPrevColumnCellValue

Note

If you call the GetPrevColumnCellValue method while an asynchronous operation is being performed, an exception will be thrown. To determine whether the operation is in progress, use the pivot grid’s IThreadSafeAccessible.IsAsyncInProgress property. For more information, see Asynchronous Mode.

See Also