Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridBandCollection.GetVisibleBand(GridBand) Method

Searches for a visible band starting from a specified band.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#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