Xml.XMLDoc.TXMLNode.DOMNode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DOMNode: IDOMNode read FDOMNode;

C++

__property Xml::Xmldom::_di_IDOMNode DOMNode = {read=FDOMNode};

Properties

Type Visibility Source Unit Parent
property protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNode

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. It can be accessed through the DOMNode property of the node's IXMLNode interface.

Typically, applications that contain TXMLNode descendants use the IXMLNode interface to work with a node rather than the IDOMNode interface. IDOMNode is used more typically in applications that work directly with the DOM interfaces.

The value of DOMNode is set to the IDOMNode interface that is provided to the TXMLNode constructor.

See Also