New (XmlDoc constructor)

From m204wiki
Jump to navigation Jump to search

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