TreeNode.Expand Method
.NET Framework 4
Expands the tree node.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example toggles the selected node when a button is clicked. If the selected node is collapsed, it is expanded, if it is expanded by calling the Expand method, it is collapsed by calling the Collapse method. This example requires that you have a Form with a TreeView control that has at least one TreeNode with at least one child TreeNode.
private void button1_Click(object sender, System.EventArgs e) { if (treeView1.SelectedNode.IsExpanded) { treeView1.SelectedNode.Collapse(); MessageBox.Show(treeView1.SelectedNode.Text + " tree node collapsed."); } else { treeView1.SelectedNode.Expand(); MessageBox.Show(treeView1.SelectedNode.Text + " tree node expanded."); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note