GridBandCollection.Add(GridBand) Method
Adds the specified band to the end of the collection.
Namespace: DevExpress.XtraGrid.Views.BandedGrid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
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.