TreeNode collection without user data

  • Thread starter Thread starter Ondrej Sevecek
  • Start date Start date
O

Ondrej Sevecek

Hello,
TreeNode collection inserted into TreeView does not (by my investigations)
contain any reference to user supply data which could identify the node or
could link some user data to the node. So how to achieve the aim.

Ondra.
 
The TreeNode class has a property called Tag, which you can use to store any
data that you want to refer back to.
 
Back
Top