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

BaseRow.AppearanceHeader Property

Provides access to appearance settings used to paint row headers.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#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