Microsoft XML SDK 2.6 - XML Reference

implementation Property

Contains the XMLDOMImplementation object for this document.

objXMLDOMImplementation = oXMLDOMDocument.implementation

Remarks

Object. The property is read-only. An XML DOM application can use objects from multiple implementations. This property provides access to the XMLDOMImplementation object that handles this document.

Example

The following VBScript example creates an XMLDOMImplementation object:

Dim xmlDoc
Dim i
Set xmlDoc = CreateObject("Msxml2.DOMDocument")
xmlDoc.async = False
xmlDoc.load("c:\books.xml")
Set i = xmlDoc.implementation

See Also

Applies To: DOMDocument Object