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

LookUpColumnInfoCollection.IndexOf(LookUpColumnInfo) Method

Gets the zero-based index of the specified column in the item collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public int IndexOf(
    LookUpColumnInfo column
)

Parameters

Name Type Description
column LookUpColumnInfo

The column to locate in the collection.

Returns

Type Description
Int32

The zero-based index of the specified column in the current collection, if found; otherwise, -1.

Remarks

The IndexOf method returns the position of the specified column in the current collection. If the column is not found in the collection, the function returns -1.

See the LookUpColumnInfoCollection.Item property to get a column by its index or field name.

See Also