Imports Infragistics.Win.UltraWinTree
...
'Declare a new node
Dim node As New UltraTreeNode("insertedNode", "InsertedNode")
'Insert the new node at index postion 1. In this case 2 nodes exist previously with index positions 0 and 1 repsectively.
Me.ultraTree1.Nodes.Insert(1, node)