Xml.xmldom.RegisterDOMVendor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterDOMVendor(const Vendor: TDOMVendor);

C++

extern DELPHI_PACKAGE void __fastcall RegisterDOMVendor(TDOMVendor* const Vendor);

Properties

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


Description

Registers an implementation of the DOM interfaces so that it is available to the TXMLDocument class.

Call RegisterDOMVendor to register a DOM implementation that you want to use for parsing XML documents. A DOM (Document Object Model) implementation is a set of objects that implement the standard DOM interfaces.

If you are using another DOM implementation, you must create a TDOMVendor descendant that can supply the IDOMImplementation interface and description string for the DOM implementation. Pass an instance of this object as the Vendor parameter to RegisterDOMVendor.

See Also