RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IDOMNode Interface

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

Pascal
IDOMNode = interface(IInterface);
C++
__interface IDOMNode : public IInterface;

xmldom

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.

Note: C++ method declarations that use IDOMNode use the _di_IDOMNode type instead. This type is a DelphiInterface wrapper around the IDOMNode interface:

typedef System::DelphiInterfaceDelphiInterface_object< IDOMNode >  _di_IDOMNode;

 

IXMLNode 

TXMLDocument 

CreateDOMNode

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!