General downloads

XMLDOM Node Type Constants Codeunit

Author
Jan Hoek  
Category
General downloads
Date
13/02/2013
Size
2,88 KB
Downloads
911
MD5 digest
C9603619EDDBC2D29E1B69C5CE456C7E
Rating
14321
Popularity
Downloaded 4 times in the last two weeks
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');

More info in this blog post: http://mibuso.com/blogs/zenandtheartofcsidedevelopment/2011/12/01/constants-in-cal/
Download this file