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

GridBandColumnCollection.Add(BandedGridColumn) Method

Adds the specified column to the end of the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual void Add(
    BandedGridColumn column
)

Parameters

Name Type Description
column BandedGridColumn

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Add(BandedGridColumn) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also