Xml.XMLDoc.TXMLNode.ParentNode
Delphi
property ParentNode: TXMLNode read FParentNode;
C++
__property TXMLNode* ParentNode = {read=FParentNode};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | protected | Xml.XMLDoc.pas Xml.XMLDoc.hpp |
Xml.XMLDoc | TXMLNode |
Description
Identifies the object that represents this node's parent node.
TXMLNode uses ParentNode to access the implementation of the node's parent, if it exists. Some nodes (for example attribute nodes) do not have parents.
Applications can't use this protected property to access the parent node of a node. Instead, they use the ParentNode property of the IXMLNode interface for this node.