Skip to main content

GridColumnCollection.ColumnByFieldName(String) Method

Returns a column specified by its bound field name.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public virtual GridColumn ColumnByFieldName(
    string fieldName
)

Parameters

Name Type Description
fieldName String

A string value representing the column’s bound field name.

Returns

Type Description
GridColumn

A GridColumn object representing the column bound to the specified field. null (Nothing in Visual Basic) if the collection has no columns bound to the field.

Remarks

The method scans the collection starting from the last element and returns the first column found whose GridColumn.FieldName property matches the parameter value.

To find a column by its name, use the ColumnByName method.

See Also