Microsoft XML SDK 2.6 - XML Reference

readyState Property (XSLProcessor)

Returns the current state of the processor.

lReadyState = objXSLProcessor.readyState

Remarks

The readyState property returns the current state of the processor as follows:

State Description
READYSTATE_UNINITIALIZED (0) This is the initial state until all the required properties are set (in particular, the input property). Calling transform at this point returns an error.
READYSTATE_LOADING (1) Not used by XSLProcessor.
READYSTATE_LOADED (2) This is the state in which all required properties are set. You can now call transform.
READYSTATE_INTERACTIVE (3) transform has been called but is not finished yet. Not used by XSLProcessor.
READYSTATE_COMPLETE (4) The transformation is finished, but there may still be some output to read if you are reading the output as a string.

When you call reset or set any property, it reverts to READYSTATE_LOADED. If a required property is cleared, it reverts to READYSTATE_UNINITIALIZED.

See Also

Applies To: XSLProcessor Object