TreeList.GetColumnByVisibleIndex(Int32) Method
In This Article
Returns a column by its visible index.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public TreeListColumn GetColumnByVisibleIndex(
int visibleIndex
)
#Parameters
Name | Type | Description |
---|---|---|
visible |
Int32 | An integer value representing the column’s index among other visible columns. |
#Returns
Type | Description |
---|---|
Tree |
A Tree |
#Remarks
This method only returns visible columns, whose TreeListColumn.VisibleIndex property is set to true. To get a column regardless of its visible state, use the TreeList.GetColumnByColumnHandle method.
See Also