TreeNodeExtensionsNextNodeDepth Method
Gets the next node by depth search.
Namespace: KGySoft.WinFormsAssembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
public static TreeNode? NextNodeDepth(
this TreeNode? node
)
<ExtensionAttribute>
Public Shared Function NextNodeDepth (
node As TreeNode
) As TreeNode
public:
[ExtensionAttribute]
static TreeNode^ NextNodeDepth(
TreeNode^ node
)
[<ExtensionAttribute>]
static member NextNodeDepth :
node : TreeNode -> TreeNode
- node TreeNode
- The start node.
TreeNodeThe next node by depth search, or
if next node was not found.In Visual Basic and C#, you can call this method as an instance method on any object of type
TreeNode. 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).