treeview to see all the nodes

  • Thread starter Thread starter andreas
  • Start date Start date
A

andreas

Hi,
When i build a treeview by code i see only the first rang nodes and i have
to click all this nodes to see all the nodes of the follewing rangs and so
on.
Can i do this with code to see all the nodes at once ?
Thanks for any response
 
andreas said:
Hi,
When i build a treeview by code i see only the first rang nodes and i have
to click all this nodes to see all the nodes of the follewing rangs and so
on.
Can i do this with code to see all the nodes at once ?
Thanks for any response
Hi,

TreeView.ExpandAll()
 
* "andreas said:
When i build a treeview by code i see only the first rang nodes and i have
to click all this nodes to see all the nodes of the follewing rangs and so
on.
Can i do this with code to see all the nodes at once ?

For /all/ nodes, call the treeview's 'ExpandAll' method, for a specific
subnode, call its 'ExpandAll' method.
 
Back
Top