Xml.XMLIntf.IXMLNode.DOMNode
Delphi
property DOMNode: IDOMNode read GetDOMNode;
C++
__property Xml::Xmldom::_di_IDOMNode DOMNode = {read=GetDOMNode};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Xml.XMLIntf.pas Xml.XMLIntf.hpp |
Xml.XMLIntf | IXMLNode |
Description
Provides access to the IDOMNode interface for this node.
IDOMNode is the interface for this node provided by the DOM implementation that parsed the XML document. You can use this interface to work with the node using the lower-level properties and methods of the DOM.
Typically, applications use the IXMLNode interface to work with a node rather than the IDOMNode interface. For more information on DOM interfaces, see the DOM specification on the W3 website or the documentation provided by your DOM vendor.