Discuss this help topic in SecureBlackbox Forum

TElXMLNodeSet.HasNode

TElXMLNodeSet     See also     


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


Checks whether the node belongs to the set.

Declaration

[C#]
    bool HasNode(TElXMLDOMNode Node);

[VB.NET]
    Function HasNode(ByVal Node As TElXMLDOMNode) As Boolean

[Pascal]
    function HasNode(ANode: TElXMLDOMNode): boolean;

[C++]
    bool HasNode(TElXMLDOMNode &Node);
    bool HasNode(TElXMLDOMNode *Node);

[PHP]
    bool HasNode(TElXMLDOMNode $Node)

[Java]
    boolean hasNode(TElXMLDOMNode Node);

Parameters

  • ANode - DOM node which belonging to the set should be checked
  • Node - ...

Return value

    Returns True if the node belongs to the set and False otherwise.

Description

    Use this method to check whether the XML DOM node belongs to the node set.

See also:     Add     Delete     OwnNodes     Node    

Discuss this help topic in SecureBlackbox Forum