IXMLDOMDocument3
As an extension of the IXMLDOMDocument2
interface, the IXMLDOMDocument3
interface supports two additional methods, importNode
and validateNode
. The first one can be used to clone a node from an XML DOM object of different threading model. The second method performs run-time validation of a specified DOM fragment against the currently loaded document type definition (DTD), schema, or schema collection.
Properties
None.
Methods
importNode | Clones a node from a different DOM, so that it can be added later into the document using the appendChild method. |
validateNode* | Validates a DOM fragment against the currently loaded DTD, schema, or schema collection. |
* Extension to the W3C DOM Specification.
Events
None.
Remarks
With an pointer to this interface, you can access all the methods and properties of the IXMLDOMDocument2
interface.
Requirements
Implementation: msxml5.dll
Header and IDL files: msxml2.h, msxml2.idl
Version-Dependent ProgID: Msxml2.DOMDocument.5.0, Msxml2.FreeThreadedDOMDocument.5.0
Version-Dependent CLSID: 88d969e5-f192-11d4-a65f-0040963251e5
Versioning
MSXML 5.0 and later
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button in the upper-left corner of the page.
See Also
IXMLDOMDocument/DOMDocument | IXMLDOMDocument2