OpenXmlElement.Clone Method

Definition

Creates a duplicate of the current node.

public object Clone ();
abstract member Clone : unit -> obj
override this.Clone : unit -> obj
Public Function Clone () As Object

Returns

The cloned node.

Implements

Remarks

Cloning an OpenXmlNode copies all attributes and their values, including those generated by the XML processor to represent defaulted attributes. This method recursively clones the node and the subtree underneath it. Cloning is equivalent to calling CloneNode(true).

Applies to