Copy (XmlDoc function): Difference between revisions
Jump to navigation
Jump to search
m (→Usage notes) |
mNo edit summary |
||
Line 2: | Line 2: | ||
[[Category:XmlDoc methods|Copy function]] | [[Category:XmlDoc methods|Copy function]] | ||
[[Category:XmlDoc API methods]] | [[Category:XmlDoc API methods]] | ||
This method returns an exact copy of the method XmlDoc object. | This method returns an exact copy of the method XmlDoc object. | ||
It is identical to the <var>XmlDoc</var> <var>[[DeepCopy (XmlDoc function)|DeepCopy]]</var> method. | It is identical to the <var>XmlDoc</var> <var>[[DeepCopy (XmlDoc function)|DeepCopy]]</var> method. | ||
Since XmlDoc objects are relatively simple, that is, they contain no | Since XmlDoc objects are relatively simple, that is, they contain no other objects, they are always [[Copying objects|copyable and deep copyable]]. | ||
other objects, they are always copyable and deep copyable | |||
==Syntax== | ==Syntax== | ||
{{Template:XmlDoc:Copy syntax}} | {{Template:XmlDoc:Copy syntax}} |
Revision as of 02:22, 23 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.