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

PivotCustomDrawCellBaseThreadSafeEventArgs.ColumnField Property

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

public IThreadSafeField ColumnField { get; }

Property Value

Type Description
IThreadSafeField

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

Remarks

If the current cell resides within a Column Grand Total, the ColumnField property returns null. Otherwise, this property returns the innermost column field that corresponds to the current cell.

To obtain the corresponding row field, use the PivotCustomDrawCellBaseThreadSafeEventArgs.RowField property.

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

See Also