Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridAppearancesBase.Cell Property

Gets the appearance settings used to paint data cells.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#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