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

GridBandCollection.GetVisibleBand(GridBand) Method

Searches for a visible band starting from a specified band.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public virtual GridBand GetVisibleBand(
    GridBand band
)

Parameters

Name Type Description
band GridBand

A GridBand object specifying the band from which the search is started.

Returns

Type Description
GridBand

A GridBand object representing the found band. null (Nothing in Visual Basic) if no visible band is found.

Remarks

If the specified band’s GridBand.Visible property value is true, the method returns this band. Otherwise, the method searches forward through the collection and returns the first visible band found.

See Also