xml.DomDocument.create

Constructor of an empty DomDocument object.

Syntax

xml.DomDocument.create()
  RETURNING object xml.DomDocument

Usage

Constructor of an empty DomDocument object.

Returns a DomDocument object.

Example

Create a DomDocument without a root node:

xml.domDocument.create()
Create a DomDocument with an initial root node named ARoot:
xml.domDocument.create("ARoot")