Xml.xmldom.IDOMDocument.getElementsByTagNameNS

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function getElementsByTagNameNS(const namespaceURI,                              { DOM Level 2 }  localName: DOMString): IDOMNodeList; safecall;

C++

virtual HRESULT __safecall getElementsByTagNameNS(const System::UnicodeString namespaceURI, const System::UnicodeString localName, _di_IDOMNodeList &__getElementsByTagNameNS_result) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMDocument

Description

Returns a list of all the descendant elements with the specified name and namespace.

The getElementsByTagNameNS method returns a list of all the descendant elements that match the name and namespace supplied by the parameters.

See Also