Get the full name of the item/branch in the specified branch.
This method is typically used to get the name of the node selected in a treeView.
C# sample:
TreeNode sel = e.Node ;
string selItem = ItemTree.ItemName( sel ) ;
VB sample:
Dim sel As TreeNode
sel = e.Node
Dim selItem As String
selItem = ItemTree.ItemName(sel)
Parameters
- node
- Branch/Leaf to get the item for
Return Value
full item/branch nameTarget Platforms: Windows 7/8/10, Windows Server 2008/2012/2016, .NET 4.x