How to add a node into the treeViewAdv at a specific index?
(Views :1271)

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
::adCenter::