Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

LookUpColumnInfoCollection.GetVisibleColumn(Int32) Method

Returns a visible lookup column at the specified visible index.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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