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

BandedGridColumnCollection.AddRange(BandedGridColumn[]) Method

Adds an array of column objects to the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public virtual void AddRange(
    BandedGridColumn[] columns
)

Parameters

Name Type Description
columns BandedGridColumn[]

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

Remarks

The AddRange method adds a group of existing column objects to the collection. Individual columns can be added using the GridColumnCollection.Add method.

To remove an existing column, use the GridColumnCollection.Remove method.

See Also