Skip to main content
All docs
V25.1
  • GridBandCollection.ForEach(Action<GridBand>) Method

    Executes the specified action on each element in the collection.

    Namespace: DevExpress.XtraGrid.Views.BandedGrid

    Assembly: DevExpress.XtraGrid.v25.1.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