Xml.xmldom.IDOMNode.ownerDocument

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

property ownerDocument: IDOMDocument read get_ownerDocument;

C++

__property _di_IDOMDocument ownerDocument = {read=_scw_get_ownerDocument};

Properties

Type Visibility Source Unit Parent
property public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMNode

Description

Represents the interface for the document that contains this node.

Use ownerDocument to obtain the interface of the document that contains this node. The IDOMDocument interface can be used to create new nodes.

If this node has nodeType of DOCUMENT_NODE or DOCUMENT_TYPE_NODE, the value of ownerDocument is nil (Delphi) or NULL (C++).

See Also