Hi -
I have an UltraWinTree.UltraTree which has three level nodes. On Initializing, I have to show the tree in such a way that Nodes at level 1 and 2 are expanded and the nodes at level 3 so that the tree doen't look cluttered. All I saw is expandall and collapseall methods which applies to all nodes in the tree. Is there property to accomplish this one?
Thank you in advance.
There's an Expanded property on the node, itself. So you could expand the node at the time you add it to the tree if it's on level 1 or 2.
This is what i want. Thanq.