New (XmlDoc constructor): Difference between revisions
Jump to navigation
Jump to search
m (→Syntax terms) |
m (→Syntax terms) |
||
Line 8: | Line 8: | ||
<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#Shared methods|shared]] method. </td></tr> | <td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods and constructors|shared]] method. </td></tr> | ||
</table> | </table> | ||
Revision as of 17:56, 14 July 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 class name in parentheses denotes a shared method. |
Usage notes
- You can invoke New with an explicit class name (as in the syntax box above), or you can alternatively invoke it with no object (as shown below) or with an object variable (even if that object is null):
%xmldoc = new %xmldoc = %doc: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.