BandedGridColumnCollection.Item[String] Property
Gets a column by the name of the field to which it is bound.
Namespace: DevExpress.XtraGrid.Views.BandedGrid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
fieldName | String | A String value specifying the data source field name. |
Property Value
Type | Description |
---|---|
BandedGridColumn | A BandedGridColumn object representing a column within the collection bound to the data source field with the specified name. null (Nothing in Visual Basic) if no column is found. |
Remarks
This property allows you to access columns using index notation specifying the bound field name as a parameter.
This property uses the BandedGridColumnCollection.ColumnByFieldName method internally.
See Also