Xml.xmldom.TDOMVendor.DOMImplementation

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function DOMImplementation: IDOMImplementation; virtual; abstract;

C++

virtual _di_IDOMImplementation __fastcall DOMImplementation() = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom TDOMVendor

Description

Returns the IDOMImplementation interface for the associated DOM implementation.

DOMImplementation returns the top-level interface for a DOM implementation. This interface is the starting point for any application that uses the DOM implementation to parse and edit an XML document.

DOMImplementation is an abstract (pure virtual) method in TDOMVendor. Descendant classes override this method to return the IDOMImplementation interface for the associated DOM implementation.

Note: For more information about the IDOMImplementation, see the W3C Document Object Model (DOM) Level 2 Specification or the documentation provided by your DOM vendor.

See Also