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

GridBandCollection.AddRange(GridBand[]) Method

Adds an array of band objects to the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public virtual void AddRange(
    GridBand[] bands
)

Parameters

Name Type Description
bands GridBand[]

An array of GridBand objects to be added to the collection.

Remarks

The AddRange method adds bands to the end of the collection in the order they appear within the specified array.

Individual bands can be added to the collection using the GridBandCollection.Add and GridBandCollection.Insert methods. If you need 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