DeepCopy (XmlDoc function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Deep copy this XmlDoc (XmlDoc class)

DeepCopy method returns an exact copy of the method xmlDoc object. It is identical to the xmlDoc Copy method.

Since XmlDoc objects are relatively simple, that is, they contain no other objects, they are always both "copyable and deep copyable".

Syntax

%outDoc = doc:DeepCopy

Syntax terms

%outDoc An xmlDoc object variable to contain the copy of doc.
doc An xmlDoc object expression, which may be Null.

Usage notes

  • The method object (doc) may be Null. The output of a copy of a Null object is a Null object.

See also