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

LookUpColumnInfoCollection.GetVisibleColumn(Int32) Method

Returns a visible lookup column at the specified visible index.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public LookUpColumnInfo GetVisibleColumn(
    int index
)

Parameters

Name Type Description
index Int32

An integer which specifies the zero-based visible index of the column which should be returned.

Returns

Type Description
LookUpColumnInfo

A LookUpColumnInfo object which represents the visible lookup column at the specified index.

Remarks

Use the GetVisibleColumn method to obtain a visible column at the specified index. The number of visible columns is determined by the LookUpColumnInfoCollection.VisibleCount property. Thus the index parameter can vary between 0 and VisibleCount-1.

To access all the lookup columns use the LookUpColumnInfoCollection.Item indexer.

See Also