Indicates the current state of the XML document.
lValue = oXMLDOMDocument.readyState
HRESULT get_readyState( long *value);
LOADING (1) | The load is in progress—reading persisted properties but not yet parsing data. For readyState definitions, data should be considered equivalent to BLOB (binary large object) properties. |
LOADED (2) | Reading of the persisted properties completed—reading and parsing data, but the object model is not yet available. |
INTERACTIVE (3) | Some data has been read and parsed, and the object model is now available on the partially retrieved data set. Although the object model is available during this state, it is read-only. |
COMPLETED (4) | The document has been completely loaded, successfully or unsuccessfully. |
See the IXMLDOMDocument::onreadystatechange Event example.