Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.FindNode

TElXMLDOMNode     See also     


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


Searches for the child node with given name.

Declaration

[C#]
    TElXMLDOMNode FindNode(string aNodeName);
    TElXMLDOMNode FindNode(string aNodeName, bool Deep);

[VB.NET]
    Function FindNode(ByVal aNodeName As String) As TElXMLDOMNode
    Function FindNode(ByVal aNodeName As String, ByVal Deep As Boolean) As TElXMLDOMNode

[Pascal]
    function FindNode(const aNodeName : WideString) : TElXMLDOMNode;
    function FindNode(const aNodeName : WideString; Deep : boolean) : TElXMLDOMNode;

[C++]
    TElXMLDOMNodeHandle FindNode(const sb_u16string &aNodeName);
    TElXMLDOMNodeHandle FindNode(const std::wstring &aNodeName);
    TElXMLDOMNodeHandle FindNode(const sb_u16string &aNodeName, bool Deep);
    TElXMLDOMNodeHandle FindNode(const std::wstring &aNodeName, bool Deep);

[PHP]
    TElXMLDOMNode FindNode(string $aNodeName)
    TElXMLDOMNode FindNode(string $aNodeName, bool $Deep)

[Java]
    TElXMLDOMNode findNode(String aNodeName);
    TElXMLDOMNode findNode(String aNodeName, boolean Deep);

Parameters

  • aNodeName - A name of the child node to find.
  • Deep - If this parameter value is False the search will be performed only between child nodes; if it is set to True the search will be extended to the deepest level in the XML hierarchy.

Description

    Use this method to find a child node with the given NodeName. This method searches only for direct children.

See also:     NodeName    

Discuss this help topic in SecureBlackbox Forum