Skip to main content

ASPxTreeList.VisibleColumns Property

Gets a collection of visible columns within the ASPxTreeList.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ReadOnlyCollection<TreeListColumn> VisibleColumns { get; }

Property Value

Type Description
ReadOnlyCollection<TreeListColumn>

The collection of visible columns.

Remarks

The VisibleColumns collection contains the columns whose Visible property set to true. To access the collection that contains all the columns owned by the ASPxTreeList, use the ASPxTreeList.Columns property.

To learn more, see Accessing Columns.

See Also