Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.ParentNode

TElXMLDOMNode     See also     


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


This property gets the parent of this node (for nodes that can have parents).

Declaration

[C#]
    TElXMLDOMNode ParentNode;

[VB.NET]
    Property ParentNode As TElXMLDOMNode

[Pascal]
    property ParentNode : TElXMLDOMNode;

[C++]
    TElXMLDOMNode* get_ParentNode();

[PHP]
    TElXMLDOMNode get_ParentNode()

[Java]
    TElXMLDOMNode getParentNode();

Description

    The TElXMLDOMNode that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is an empty (null/Nothing/nil) reference. For all other nodes, the value returned depends on the NodeType of the node.

    This table describes the possible return values for the ParentNode property:

See also:     NodeType    

Discuss this help topic in SecureBlackbox Forum