Back to Devexpress

GridBandColumnCollection.Add(BandedGridColumn) Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-bandedgrid-dot-gridbandcolumncollection-dot-add-x28-devexpress-dot-xtragrid-dot-views-dot-bandedgrid-dot-bandedgridcolumn-x29.md

latest2.8 KB
Original Source

GridBandColumnCollection.Add(BandedGridColumn) Method

Adds the specified column 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 void Add(
    BandedGridColumn column
)
vb
Public Overridable Sub Add(
    column As BandedGridColumn
)

Parameters

NameTypeDescription
columnBandedGridColumn

A BandedGridColumn object representing the column to add.

|

Remarks

The Add method adds a manually created column to the collection. Note that columns cannot be added to the collection if the band owning this collection has child bands. In this case, calling the Add method has no effect.

If you need to add a column to a particular position within the collection, use the GridBandColumnCollection.Insert method. To remove a column from the collection, use the GridBandColumnCollection.Remove method.

See Also

Remove(BandedGridColumn)

Insert(Int32, BandedGridColumn)

Band

GridBandColumnCollection Class

GridBandColumnCollection Members

DevExpress.XtraGrid.Views.BandedGrid Namespace