Xml.xmldom.IDOMNode

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

IDOMNode = interface(IInterface)

C++

__interface  INTERFACE_UUID("{2BF4C0E1-096E-11D4-83DA-00C04F60B2DD}") IDOMNode  : public System::IInterface

Properties

Type Visibility Source Unit Parent
interface
class
public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom Xml.xmldom

Description

IDOMNode is the DOM interface for a node in an XML document.

IDOMNode is a vendor-neutral version of the DOM interface for a node in an XML document. It conforms to the W3CXML DOM level 2 specification. Use IDOMNode to work with a node in an XML document when you are using standard DOM interfaces rather than the IXMLNode interface. (IXMLNode is the node interface used by TXMLDocument document.)

IDOMNode represents an element in an XML document that has been parsed by a DOM parser. It includes properties and methods for navigating the node hierarchy of an XML document, for accessing the attributes of a node, and for drilling down to obtain the node's value.

For more information about IDOMNode and the other standard DOM interfaces, see the DOM specification on the W3 website or the documentation provided by your DOM vendor.

See Also