Skip to main content
A newer version of this page is available. .

LayoutViewColumnCollection.ColumnByFieldName(String) Method

Returns a column by the name of the field to which it is bound.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public LayoutViewColumn ColumnByFieldName(
    string fieldName
)

Parameters

Name Type Description
fieldName String

A String value specifying the field name.

Returns

Type Description
LayoutViewColumn

A LayoutViewColumn object representing a column bound to the data source field with the specified name. null (Nothing in Visual Basic) if no column is found.

Remarks

This method is equivalent to the GridColumnCollection.ColumnByFieldName method. See this link for more details.

See Also