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

FieldValueCellBase Class

Serves as the base for classes that represent field value cells.

Namespace: DevExpress.XtraPivotGrid.Data

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

public class FieldValueCellBase

Remarks

The FieldValueCellBase class descendants are used when handling the CustomFieldValueCells event. These objects are returned by the event parameter’s GetCell method, and provide data related to individual field value cells. The FieldValueCellBase class members provide basic data on field value cells.

Use the FieldValueCellBase.DisplayText, FieldValueCellBase.Value and FieldValueCellBase.ValueType properties to obtain the display text of the cell, the field value it represents, and the type of the cell, respectively. To obtain whether the cell is visible and whether it is expanded or collapsed, use the FieldValueCellBase.IsVisible and FieldValueCellBase.IsCollapsed properties, respectively. To obtain whether the cell is a column or row header, use the FieldValueCellBase.IsColumn property.

See Also