Xml.XMLIntf.IXMLDocument
Delphi
IXMLDocument = interface(IInterface)
C++
__interface INTERFACE_UUID("{395950C3-7E5D-11D4-83DA-00C04F60B2DD}") IXMLDocument : public System::IInterface
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
interface class |
public | Xml.XMLIntf.pas Xml.XMLIntf.hpp |
Xml.XMLIntf | Xml.XMLIntf |
Description
IXMLDocument represents an XML document.
Use IXMLDocument to work with an XML document. Applications can obtain an IXMLDocument interface through a TXMLDocument component, using the global LoadXMLDocument function, or through the OwnerDocument property of any node in the document.
Like the related DOM interface IDOMDocument, you can use IXMLDocument to access the contents of an XML document and to create new nodes. In addition, IXMLDocument lets you load an XML document that is stored on disk or assign a string of raw (unparsed) XML as the contents of the document.
TXMLDocument implements the IXMLDocument interface. Typically, the TXMLDocument component is the starting point for working with an XML document.