Articles in this section
Category / Section

How to add a node into the WinForms TreeViewAdv at a specific index?

1 min read

Add a note into TreeViewAdv

By declaring the, new node object outside the control and by using the Insert method, a node can be added in the treeViewAdv at the specific index.

C#

Syncfusion.Windows.Forms.Tools.TreeNodeAdv NewNode=new Syncfusion.Windows.Forms.Tools.TreeNodeAdv("Inserted Node");
private void button1_Click(object sender, System.EventArgs e)
{
   TreeNodeAdv NewNode=new TreeNodeAdv();
   this.treeViewAdv1.Nodes.Insert(2, NewNode);
}

VB

Private NewNode As Syncfusion.Windows.Forms.Tools.TreeNodeAdv = New Syncfusion.Windows.Forms.Tools.TreeNodeAdv("Inserted Node")
Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
   Dim NewNode As TreeNodeAdv = New TreeNodeAdv()
   Me.treeViewAdv1.Nodes.Insert(2, NewNode)
End Sub

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied