INT _listElements
_listElements := %XML_GetElementsByTagName(_doc, "elem*")
; e.g.: <element>, <element2>
; Returns handle to the list of elements that match the mask of name. It formally equals the first declaration.
_listElements := %XML_GetElementsByTagName(_doc, "elem*","")
; e.g.: <element> , <element2>
; Returns handle to the list of elements that match the mask of name, but ignores namespaces.
_listElements := %XML_GetElementsByTagName(_doc, "elem*","*")
; e.g.: <h:element>, <t:element2>, <element>
; Returns handle to the list of elements that equal the given mask and namespace or its prefix.
_listElements := %XML_GetElementsByTagName(_doc, "elem*","t")
; e.g.: <t:element>
Pridať komentár