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

GridBandCollection.Add(GridBand) Method

Adds the specified band to the end of the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual GridBand Add(
    GridBand band
)

Parameters

Name Type Description
band GridBand

A GridBand object representing the band to be added.

Returns

Type Description
GridBand

A GridBand object representing the new band.

Remarks

Use this method to add the specified band to the end of the collection. Alternatively, you can call other overloads of the Add method that create bands automatically.

You can add several bands using the GridBandCollection.AddRange method which adds an array of bands to the collection. To remove a band from the collection, use the GridBandCollection.Remove method.

Note: use the GridBandCollection.CanAdd method to determine whether a band can be added to the collection.

See Also