XMLDOM Node Type Constants Codeunit
The symbolic constants in this codeunit can be used when programming against the MSXML library. The snippet below illustrates how I typically use the codeunit.
CREATE(DOMDocument);
MESSAGE('%1', IsNodeType(DOMDocument, NODE_DOCUMENT));
MESSAGE('%1', GetNodeType(DOMDocument));
DOMDocument.createNode(NODE_ATTRIBUTE, 'myattrib', 'mynamespace');
http://www.mibuso.com/dlinfo.asp?FileID=1528
Discuss this download here.