New (XmlDoc constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(15 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:XmlDoc:New subtitle}}
{{Template:XmlDoc:New subtitle}}
[[Category:XmlDoc methods|New constructor]]
 
[[Category:XmlDoc API methods]]
This method creates an XmlDoc object instance and takes no arguments.
==Syntax==
==Syntax==
{{Template:XmlDoc:New syntax}}
{{Template:XmlDoc:New syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%doc</i></th>
<tr><th>%doc</th>
<td>A declared XmlDoc object variable to contain the new XmlDoc 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>
<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>New can be invoked with no object (as in the syntax box above),
<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
or alternatively as shown below, with an explicit class name
 
or with an object variable (even if that object is null):
%xmldoc = %(XmlDoc):new
<p class="code">%xmldoc = %(XmlDoc):new
 
%xmldoc = %xmldoc:new
</p>
</p>
<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 <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>
==See also==
==See also==
{{Template:XmlDoc:New footer}}
{{Template:XmlDoc:New footer}}

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