Skip to main content
All docs
V24.2

GridBandCollection.ForEach(Action<GridBand>) Method

Executes the specified action on each element in the collection.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.dll

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