Hello!
I have the following RadTreeView and I would like to know if it's possible to remove duplicate sub-nodes. Here is how my tree looks like.
[MAIN NODE 1] | (text = Main Node 1) | Name = Node1
[SubNode1]
[SubNode1]
[SubNode2]
[MAIN NODE 2] | (text = Main Node 2) | Name = Node2
[SubNode1]
[SubNode1]
[SubNode2]
How would I loop through all the main nodes and remove all the duplicate child nodes?
I created my main node dynamically through code and do not store their .Name property so I cannot just use RadTreeView.Nodes(MainNode)
Is there something like..
For Each MainNode In RadTreeView1.MainNodes
Loop through and delete child nodes if there is a duplicate