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

GridBand.RowCount Property

Gets or sets the band header height in rows.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(1)]
[DXCategory("Appearance")]
[XtraSerializableProperty]
[XtraSerializablePropertyId(3)]
public virtual int RowCount { get; set; }

#Property Value

Type Default Description
Int32 1

An integer value specifying the band header height in rows. Values less than 1 are not accepted.

#Remarks

Band header row height is specified by the View’s BandedGridView.BandPanelRowHeight property. If this property is set to -1 the height of a single band header row is calculated automatically to fit band contents (text and image).

The image below shows the relation between the RowCount and BandedGridView.BandPanelRowHeight properties.

GridBand_RowCount

Note: the actual band header height also depends on the GridBand.AutoFillDown property value. If the property value is true, the band header is automatically resized to fill the empty space below it.

See Also