Hello, how can i get the name of a node instead of gaving: "TreeNode: Node_name" i just want have Node_name.
I use node.toString()
Edit:
I found the awnser:
code:
I use node.toString()
Edit:
I found the awnser:
code:
Code:
[B]String s;
s = e.Node.toString();
s=s.Replace("TreeNode: ", "");[/B]