New (XmlDoc constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
Line 7: Line 7:
<tr><th>%doc</th>
<tr><th>%doc</th>
<td>A declared <var>XmlDoc</var> object variable to contain the new <var>XmlDoc</var> object instance.</td></tr>
<td>A declared <var>XmlDoc</var> object variable to contain the new <var>XmlDoc</var> object instance.</td></tr>
<tr><th><var>%(XmlDoc)</var></th>
<tr><th><var>[%(XmlDoc):]</var></th>
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>.  See [[#Usage notes|"Usage notes"]], below, for more information about invoking an <var>XmlDoc</var> <var>Constructor</var>. </td></tr>
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>.  See [[#Usage notes|"Usage notes"]], below, for more information about invoking an <var>XmlDoc</var> <var>Constructor</var>. </td></tr>
</table>
</table>

Latest revision as of 20:56, 30 November 2011

Create a new XmlDoc object (XmlDoc class)


Syntax

%doc = [%(XmlDoc):]New

Syntax terms

%doc A declared XmlDoc object variable to contain the new XmlDoc object instance.
[%(XmlDoc):] The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an XmlDoc Constructor.

Usage notes

  • As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:

    %xmldoc = new %xmldoc = %(XmlDoc):new %xmldoc = %xmldoc:new

  • An XmlDoc can only be instantiated by the New method or by making a copy of an existing XmlDoc via the Copy or DeepCopy method.

See also