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

BandHeaderCustomDrawEventArgs.Band Property

Gets the band whose header is to be painted. Returns null if an “empty band header” is currently being painted.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

public GridBand Band { get; }

#Property Value

Type Description
GridBand

A GridBand object specifying the band whose header is to be painted.

#Remarks

When the column auto-width feature is disabled (see GridOptionsView.ColumnAutoWidth), the banded grid View displays an “empty band header” and “empty column header” to the right of data bands and columns.

Grid-EmptyColumnBandHeaders

The GridView.CustomDrawColumnHeader event fires repeatedly for each column header, including the “empty column header”. When this event is fired for the “empty column header”, the event’s Column parameter returns null.

Similarly, the BandedGridView.CustomDrawBandHeader event fires in a banded grid View repeatedly for each band header, including the “empty band header”. When this event is fired for the “empty band header”, the event’s Band parameter returns null.

See Also