This page contains reference documentation for the Clone function. This function creates a copy of a node.
Node Clone()
Examples are as follows:
Node newNode = node.Clone(); int newIndex = parent.GetChildIndex( node ) + 1; Model.AddNode( newNode, parent, newIndex );
For sample code: