GetElementsByTagNameNS (NotesDOMDocumentNode - LotusScript®)
Returns a NotesDOMNodeList of all the NotesDOMElementNode objects with a given namespace and local name. The list is arranged in the order in which they are encountered.
Defined in
Syntax
Set notesDOMNodeList = notesDOMDocument .GetElementsByTagNameNS( namespaceURI , localName )
Parameters
namespaceURI
String. The namespace URI of a qualified name.
localName
String. The local part of a qualified name.
Return value
notesDOMNodeList
A new NotesDOMNodeList object containing all the matched NotesDOMElementNode objects.
Usage
Set localName to "*" to match all elements in namespaceURI. Set namespaceURI to "*" to match all elements with localName. Set both namespaceURI and localName to "*" to match all elements.
See NamespaceURI for a discussion of namespaces and qualified names.
Refer to http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-qualnames for the W3C specification on qualified names. Refer to http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010605/glossary.html#dt-qualifiedname for a definition.