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

GridBandCollection.CanAdd(GridBand) Method

Indicates whether the specified band can be added to the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public virtual bool CanAdd(
    GridBand band
)

Parameters

Name Type Description
band GridBand

A GridBand object representing the band being examined.

Returns

Type Description
Boolean

true if the specified band can be added to the collection; otherwise, false.

Remarks

Bands cannot be added to the collection in the following cases:

  • the collection already contains the specified band;
  • the band is a parent for the collection.
See Also