Options

XMLDOM Node Type Constants Codeunit

AdministratorAdministrator Member, Moderator, Administrator Posts: 2,496
edited 2013-02-13 in Download section
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.
Sign In or Register to comment.