New (XmlDoc constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 21: Line 21:
<li>An XmlDoc can only be instantiated by either the New method or by making a copy of an existing XmlDoc via the <var>[[Copy (XmlDoc function)|Copy]]</var> or <var>[[DeepCopy (XmlDoc/XmlNode function)|DeepCopy]]</var> method.
<li>An XmlDoc can only be instantiated by either the New method or by making a copy of an existing XmlDoc via the <var>[[Copy (XmlDoc function)|Copy]]</var> or <var>[[DeepCopy (XmlDoc/XmlNode function)|DeepCopy]]</var> method.
</ul>
</ul>
==See also==
{{Template:XmlDoc:New footer}}

Revision as of 05:27, 25 January 2011

Create a new XmlDoc object (XmlDoc class) This method creates an XmlDoc object instance and takes no arguments.

Syntax

%doc = [%(XmlDoc):]New

Syntax terms

%doc A declared XmlDoc object variable to contain the new XmlDoc object instance.

Usage notes

  • New can be invoked with no object (as in the syntax box above), or alternatively as shown below, with an explicit class name or with an object variable (even if that object is null):
        %xmldoc = %(XmlDoc):new
    
  • An XmlDoc can only be instantiated by either the New method or by making a copy of an existing XmlDoc via the Copy or DeepCopy method.

See also