Back to Devexpress

GridBandCollection.Add(GridBand) Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-bandedgrid-dot-gridbandcollection-dot-add-x28-devexpress-dot-xtragrid-dot-views-dot-bandedgrid-dot-gridband-x29.md

latest3.2 KB
Original Source

GridBandCollection.Add(GridBand) Method

Adds the specified band to the end of the collection.

Namespace : DevExpress.XtraGrid.Views.BandedGrid

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public virtual GridBand Add(
    GridBand band
)
vb
Public Overridable Function Add(
    band As GridBand
) As GridBand

Parameters

NameTypeDescription
bandGridBand

A GridBand object representing the band to be added.

|

Returns

TypeDescription
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

AddRange(GridBand[])

Remove(GridBand)

CanAdd(GridBand)

GridBandCollection Class

GridBandCollection Members

DevExpress.XtraGrid.Views.BandedGrid Namespace