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

PivotCustomDrawCellBaseThreadSafeEventArgs.RowField Property

Gets the innermost row field that corresponds to the current cell.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public IThreadSafeField RowField { get; }

Property Value

Type Description
IThreadSafeField

An object that implements the IThreadSafeField interface. Specifies the innermost row field that corresponds to the current cell.

Remarks

If the current cell resides within a Row Grand Total, the RowField property returns null. Otherwise, this property returns the innermost row field that corresponds to the current cell.

To obtain the corresponding column field, use the PivotCustomDrawCellBaseThreadSafeEventArgs.ColumnField property.

To determine which data field identifies the current cell, use the PivotCustomDrawCellBaseThreadSafeEventArgs.DataField property.

See Also