Tree Node - Expanded?

  • Thread starter Thread starter Diarmuid
  • Start date Start date
D

Diarmuid

In my Treeview control, I have code where I change the icon if the node is
clicked on. I also then load the data for the child nodes.
How I tell if the node is already expanded?
Thanks
Diarmuid
 
Diarmuid said:
In my Treeview control, I have code where I change the icon if the node is
clicked on. I also then load the data for the child nodes.
How I tell if the node is already expanded?

\\\
If tn.IsExpanded Then
...
Else
...
End If
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top