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

BaseRow.AppearanceCell Property

Provides access to appearance settings used to paint row cells.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
[XtraSerializablePropertyId(1)]
[DXCategory("Appearance")]
public AppearanceObjectEx AppearanceCell { get; }

Property Value

Type Description
AppearanceObjectEx

An AppearanceObjectEx object that provides appearance settings used to paint row cells.

Remarks

The VGridControlBase.Appearance.RecordValue property provides access to appearance settings applied to all cells in the control. The AppearanceCell property allows you to override these settings for an individual row.

Each appearance setting has a corresponding UseAppearanceSetting property that enables the setting. If you modify an appearance setting after a BaseRow object has been added to the VGridControlBase.Rows collection, the corresponding UseAppearanceSetting property is enabled automatically. When a BaseRow object is not added to the VGridControlBase.Rows collection, you should enable the UseAppearanceSetting properties manually.

For more information on appearances, see the Appearances topic.

If appearance settings do not fit your needs, you can also handle the VGridControlBase.CustomDrawRowValueCell event to draw a cell manually.

See Also