Skip to main content

GridBandCollection.CanAdd(GridBand) Method

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

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

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