private void CopyNodes( UltraTree source, UltraTree destination ){ if ( source == null || destination == null ) throw new ArgumentNullException();
destination.Nodes.Clear();
foreach ( UltraTreeNode node in source.Nodes ) { UltraTreeNode newNode = node.Clone() as UltraTreeNode; destination.Nodes.Add( newNode ); }}
node.Clone() doesnt copy the cells of the node to the newNode. Can you tell me how i can copy cells from one node to another?
-pradeep