Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridBandCollection.Add(GridBand) Method

Adds the specified band to the end of the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#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