XmlDoc (XmlNodelist function)

From m204wiki
Jump to navigation Jump to search

Get the XmlDoc associated with this nodelist (XmlNodelist class)


Syntax

%doc = nodl:XmlDoc

Syntax terms

%doc An XmlDoc, which will be set to point to the document associated with object nodl.
nodl An XmlNodeList expression.

Usage notes

  • The XmlDoc function can be used when it is necessary to get or set XmlDoc properties (such as Namespace) given an XmlNodelist.

Examples

You can use XmlDoc to access the Root node (and then, optionally, to use an Xpath expression which is in effect an absolute expression) with an empty XmlNodelist, as in the following example:

local subroutine (xmlNodelist):display if %this:count eq 0 then printText Nodelist empty, here is the document: %this:xmlDoc:print else ... end if

Request-cancellation errors

XmlDoc has no request cancellation errors.

See also