Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.GetElementsByTagName

TElXMLDOMDocument     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Finds the element(s) with given tag name.

Declaration

[C#]
    TElXMLDOMNodeList GetElementsByTagName(string TagName);

[VB.NET]
    Function GetElementsByTagName(ByVal TagName As String) As TElXMLDOMNodeList

[Pascal]
    function GetElementsByTagName(const TagName : XMLString) : TElXMLDOMNodeList;

[C++]
    TElXMLDOMNodeListHandle GetElementsByTagName(const sb_u16string &TagName);
    TElXMLDOMNodeListHandle GetElementsByTagName(const std::wstring &TagName);

[PHP]
    TElXMLDOMNodeList GetElementsByTagName(string $TagName)

[Java]
    TElXMLDOMNodeList getElementsByTagName(String TagName);

Parameters

  • TagName - A tag name of the nodes to find.

Return value

    Returns a list of the desired elements.

Description

    Use this method to find elements with the given tag name. The method returns a node list, which must be disposed of, when the application finishes using it.

See also:     GetElementByID     GetElementsByTagNameNS    

Discuss this help topic in SecureBlackbox Forum