Contains the XMLDOMImplementation object for this document.
objXMLDOMImplementation = oXMLDOMDocument.implementation
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.
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
Applies To: DOMDocument Object