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

BaseRow.AppearanceHeader Property

Provides access to appearance settings used to paint row headers.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

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

Property Value

Type Description
AppearanceObjectEx

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

Remarks

The VGridControlBase.Appearance.RowHeaderPanel property provides access to appearance settings applied to all cells in the header panel. The AppearanceHeader property allows you to override these settings for an individual header cell. This property is only in effect if the BaseRow.AppearanceHeader.HighPriority option is enabled.

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.CustomDrawRowHeaderCell event to draw a cell manually.

See Also