Click to return to the XML (Extensible Markup Language) home page    
XMLDOMDocument getElement...     XMLDOMDocument load Metho...     XMLDOMDocument Object    
Web Workshop  |  XML (Extensible Markup Language)

implementation Property


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

[ Object Name ]
PlatformVersion
Win16:
Win32:
Mac:
Unix:
WinCE:
XMLDOMDocument


Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.