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

TreeListNode.Level Property

Returns the nesting level of a node.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

[Browsable(false)]
[DXCategory("Layout")]
public int Level { get; }

Property Value

Type Description
Int32

The nesting level of a node.

Remarks

The nesting level determines how many nodes you must expand to reach the current node from the root. Topmost nodes in the Tree List are referred to as root tree nodes. The Level of root nodes is zero. The Level of root node children is 1 etc.

The following image displays levels with different colors.

TreeListNode.Level

The following code snippets (auto-collected from DevExpress Examples) contain references to the Level 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