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

GridBandCollection.ContainsEx(GridBand) Method

Indicates whether a specific band is a child of the collection owner (at any nesting level).

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public virtual bool ContainsEx(
    GridBand band
)

Parameters

Name Type Description
band GridBand

A GridBand object to be located among the collection owner’s children.

Returns

Type Description
Boolean

true if the specified band is a child of the collection owner; otherwise, false.

Remarks

First, the method searches for the specified band within the collection. If not found, the method performs a recursive search in child hierarchies of bands residing within the collection. If the specified band is found, the method returns true.

See Also