Xml.XMLDoc.TXMLDocument.DOMImplementation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DOMImplementation: IDOMImplementation read FDOMImplementation write SetDOMImplementation;

C++

__property Xml::Xmldom::_di_IDOMImplementation DOMImplementation = {read=FDOMImplementation, write=SetDOMImplementation};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLDocument

Description

Provides access to the DOM interface for document-independent functions.

Use DOMImplementation to directly access the IDOMImplemenation interface identified by the DOMVendor property. This is the interface TXMLDocument uses to generate the IDOMDocument interface that is the value of DOMDocument.

Typically, the value of DOMImplementation is obtained automatically, based on the value of the DOMVendor property. You can, however, assign the DOMImplementation property directly to an IDOMImplementation interface that you have obtained through some other mechanism.

Most applications do not need to use the DOMImplementation property directly. If you do want to make use of DOMImplementation's low-level support, you must be familiar with the W3C Document Object Model (DOM) Level 2 Specification.

You must assign a value to either DOMVendor or DOMImplementation before you can set the Active property to true.

See Also