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

PivotGridAppearancesBase.Cell Property

Gets the appearance settings used to paint data cells.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public AppearanceObject Cell { get; }

Property Value

Type Description
AppearanceObject

A AppearanceObject object that provides the appearance settings used to paint data cells.

Remarks

The Cell property allows the appearance of all data cells to be specified. To specify the appearance settings for the selected and focused cells, use the PivotGridAppearances.SelectedCell and PivotGridAppearances.FocusedCell properties, respectively.

To customize the appearance of cells corresponding to a particular data field, use the PivotGridFieldAppearances.Cell property.

Cells can also be custom painted using the PivotGridControl.CustomDrawCell event.

To customize the appearance of grand total and total cells, use the PivotGridAppearancesBase.GrandTotalCell and PivotGridAppearancesBase.TotalCell properties, respectively.

For more information on appearances, see the Appearances topic.

See Also