New (XmlDoc constructor): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Syntax terms) |
||
(One intermediate revision by the same user not shown) | |||
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> | ||
Line 17: | Line 17: | ||
%xmldoc = %(XmlDoc):new | %xmldoc = %(XmlDoc):new | ||
%xmldoc = %xmldoc :new | %xmldoc = %xmldoc:new | ||
</p> | </p> | ||
<li>An <var>XmlDoc</var> can only be instantiated by the <var>New</var> method or by making a copy of an existing <var>XmlDoc</var> via the <var>[[Copy (XmlDoc function)|Copy]]</var> or <var>[[DeepCopy (XmlDoc/XmlNode function)|DeepCopy]]</var> method. | <li>An <var>XmlDoc</var> can only be instantiated by the <var>New</var> method or by making a copy of an existing <var>XmlDoc</var> via the <var>[[Copy (XmlDoc function)|Copy]]</var> or <var>[[DeepCopy (XmlDoc/XmlNode function)|DeepCopy]]</var> method. |
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.