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

TreeList.Columns Property

Provides access to a Tree List’s column collection.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

[Browsable(false)]
[XtraSerializableProperty(true, true, true)]
public TreeListColumnCollection Columns { get; }

Property Value

Type Description
TreeListColumnCollection

A TreeListColumnCollection object representing a collection of all the columns within a Tree List.

Remarks

This property stores all the columns present in the Tree List control. It allows you to add and delete columns using the appropriate methods. Individual columns can be accessed using indexed notation or the bound field name as parameters.

For more information on columns, see the Columns topic.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Columns property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also