Xml.XMLIntf.IXMLDocument.DOMDocument

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DOMDocument: IDOMDocument read GetDOMDocument write SetDOMDocument;

C++

__property Xml::Xmldom::_di_IDOMDocument DOMDocument = {read=GetDOMDocument, write=SetDOMDocument};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLDocument

Description

Provides access to the DOM interface for the parsed XML document.

Use DOMDocument to directly access the IDOMDocument interface for the parsed XML document. This is the interface supported by the DOM parser for the document.

Most applications do not need to use the DOMDocument property directly. Instead, it supplies the underlying support for parsing and manipulating the nodes accessed through DocumentElement. If you do want to make use of DOMDocument's low-level support, you must be familiar with the W3C Document Object Model (DOM) Specification.

See Also