Copy (XmlDoc function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 21: Line 21:
The output of a copy of a null object is a null object.
The output of a copy of a null object is a null object.
</ul>
</ul>
==See also==
{{Template:XmlDoc:Copy footer}}

Revision as of 05:27, 25 January 2011

Copy this XmlDoc (XmlDoc class)

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

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

Syntax

%outDoc = doc:Copy

Syntax terms

%object An xmlDoc object variable to contain the copy of doc.
doc An xmlDoc object expression.

Usage notes

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

See also