Category / Section
How to programmatically expand the root nodes in TreeViewAdv?
1 min read
You can expand the Root nodes of the TreeViewAdv by using the Expand method of the node.
C#
TreeNodeAdv root = this.treeViewAdv1.Root; foreach (TreeNodeAdv node in root.Nodes) { node.Expand(); } root.Expand();