GridViewStyles.Header Property
In This Article
Specifies the appearance of all column headers.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public GridViewHeaderStyle Header { get; }
#Property Value
Type | Description |
---|---|
Grid |
Style settings that specify the appearance of all column headers. |
#Remarks
The Header
property allows you to specify the appearance of all column headers in markup and in a CSS class.
To customize the appearance of a particular column’s header, specify a column’s HeaderStyle property.
#Markup Example
#CSS Example
#ASPxGridView1 .allColumnHeadersStyle {
background-color: snow;
color: black;
}
See Also