Skip to main content

BandedGridColumnCollection.ColumnByName(String) Method

Returns a column by its name.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public BandedGridColumn ColumnByName(
    string columnName
)

Parameters

Name Type Description
columnName String

A String value specifying the column name.

Returns

Type Description
BandedGridColumn

A BandedGridColumn object representing a column with the specified name. null (Nothing in Visual Basic) if no column is found.

Remarks

This method is equivalent to the GridColumnCollection.ColumnByName method.

See Also