Click or drag to resize

TreeNodeExtensionsLevelT Method

Determines the level of the specified node. The root node (= node that has no parent) will return a level of 0, the child nodes of the root node a level of 1 and so on.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static int Level<T>(
	this T node
)
where T : Object, INodeWithParentNode<T>

Parameters

node  T
The node for which the level is returned.

Type Parameters

T
Type of node

Return Value

Int32
The node's level.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionnode is null.
See Also