Skip to main content
All docs
V23.2

GridBandCollection.ForEach(Action<GridBand>) Method

Executes the specified action on each element in the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public void ForEach(
    Action<GridBand> action
)

Parameters

Name Type Description
action Action<GridBand>

The delegate to execute on each element in the collection.

Remarks

The code below converts the captions of all bands to uppercase.

bandedGridView1.Bands.ForEach(band => band.Caption = band.Caption.ToUpper());
See Also