Contains the XMLDOMImplementation object for this document.
Syntax
objXMLDOMImplementation = oXMLDOMDocument.implementation
Remarks
Object. The property is read-only. An XMLDOM 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("microsoft.xmldom")
xmlDoc.async = False
xmlDoc.load("c:\books.xml")
Set i = xmlDoc.implementation
Applies To