Xml.xmldom.DOMVendors

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DOMVendors: TDOMVendorList;

C++

extern DELPHI_PACKAGE TDOMVendorList* __fastcall DOMVendors(void);

Properties

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


Description

Lists all registered DOM Vendors.

Use DOMVendors to determine all the DOM implementations currently registered with an application. For example, you can iterate through the Vendors property to obtain each registered TDOMVendor object, which can then be used to extract its IDOMImplementation interface or a descriptive string. Any of the TDOMVendor objects in the list can be assigned as the DOMVendor property of an XML document component.

Do not add or delete vendors using this global variable: Instead, add and remove vendors by calling the RegisterDOMVendor or UnRegisterDOMVendor procedure.

See Also


Code Examples