Skip to main content

GridControl.Bands Property

Provides access to the grid's band collection.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.dll

#Declaration

[XtraSerializableProperty(true, true, true)]
[GridStoreAlwaysProperty]
public ObservableCollectionCore<GridControlBand> Bands { get; }

#Property Value

Type Description
DevExpress.Xpf.Core.ObservableCollectionCore<GridControlBand>

An observable collection of bands within the grid.

#Remarks

The grid stores its bands within the Bands collection. This collection provides methods that allow you to add new and remove existing bands. Individual columns are represented by GridControlBand objects, and can be accessed using indexed notation.

See Also