Microsoft XML SDK 2.6 - XML Reference

parsed Property

Contains True if this node and all descendants have been parsed and instantiated; False if any nodes remain to be parsed.

boolValue = oXMLDOMNode.parsed

Remarks

Boolean. The property is read-only. During asynchronous access, not all of the document tree may be available. Before performing some operations, such as XSLT transformations or pattern-matching operations, it is useful to know whether the entire tree below this node is available for processing.

This member is an extension of the W3C DOM.

Example

The following VBScript example displays whether or not the top-level node (root) and all its descendants are parsed:

Dim xmlDoc
Dim root
Set xmlDoc = CreateObject("Msxml2.DOMDocument")
xmlDoc.async = True
xmlDoc.load("c:\books.xml")
Set root = xmlDoc.documentElement
MsgBox root.parsed

See Also

XSLT Reference

Applies To: XMLDOMAttribute Object | XMLDOMCDATASection Object | XMLDOMCharacterData Object | XMLDOMComment Object | DOMDocument Object | XMLDOMDocumentFragment Object | XMLDOMDocumentType Object | XMLDOMElement Object | XMLDOMEntity Object | XMLDOMEntityReference Object | XMLDOMNode Object | XMLDOMNotation Object | XMLDOMProcessingInstruction Object | XMLDOMText Object | XTLRuntime Object