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

    Executes the specified action on each element in the collection.

    Namespace: DevExpress.XtraGrid.Columns

    Assembly: DevExpress.XtraGrid.v25.1.dll

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

    Declaration

    public void ForEach(
        Action<GridColumn> action
    )

    Parameters

    Name Type Description
    action Action<GridColumn>

    The delegate to execute on each element in the collection.

    Remarks

    The code below converts the captions of all column headers to uppercase.

    gridView1.Columns.ForEach(column => column.Caption = column.Caption.ToUpper());
    
    See Also