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

TreeListControl.Columns Property

Provides access to the column collection.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public TreeListColumnCollection Columns { get; }

Property Value

Type Description
TreeListColumnCollection

A TreeListColumnCollection object that is a collection of columns within the control.

Remarks

The TreeList stores its columns within the Columns collection. This collection provides methods that allow you to add new and remove existing columns. Individual columns are specified by TreeListColumn objects, and can be accessed using indexed notation or by the field name (ColumnBase.FieldName).

To access only visible columns whose BaseColumn.Visible property is set to true, use a view’s TreeListView.VisibleColumns property.

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