New (XmlDoc constructor): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (→Syntax terms) |
||
(2 intermediate revisions 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 class name in parentheses denotes a [[Notation conventions for methods# | <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> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> | ||
<li> | <li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%xmldoc = new | ||
<p class="code">%xmldoc = new | |||
%xmldoc = % | %xmldoc = %(XmlDoc):new | ||
%xmldoc = %xmldoc:new | |||
</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. | ||
</ul> | </ul> |
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.