Document Class Properties

In this section, the Document class properties are presented in alphabetical order.

Description

Use this property to return the root element for this document as a Compound object.

This property is read-only.

Example

Local Document &Doc;
Local DocumentKey &DocKey;
Local Compount &Root


/* Instatiate the Document object */
&DocKey = CreateDocumentKey("Purchasing", "PurchaseOrder", "v1");
&Doc = CreateDocument(&DocKey);

&Root = &Doc.DocumentElement;