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

BandedGridView.MinBandPanelRowCount Property

Gets or sets the minimum band header panel height in rows.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

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

Property Value

Type Default Description
Int32 1

An integer value specifying the minimal number of rows possible within the band panel.

Remarks

The MinBandPanelRowCount property can accepts positive integers only. If a non-positive integer is assigned to the property, the property is automatically set to 1.

Note that the MinBandPanelRowCount property specifies the height in rows. The height of a single band panel row is specified by the View’s BandedGridView.BandPanelRowHeight property. Note that the actual band header panel height may be greater than specified by these two properties. This occurs when arranging band headers into several rows and when modifying the GridBand.RowCount property.

See Also