readyState property
Retrieves the current state of the object.
Syntax
HRESULT value = object.get_readyState(* p);
Property values
Type: VARIANT
-
Object is not initialized with data.
-
Object is loading its data.
-
Object has finished loading its data.
-
User can interact with the object even though it is not fully loaded.
-
Object is completely initialized.
Remarks
The states through which an object passes are determined by that object; an object can skip certain states (for example, interactive) if those states do not apply to that object.
Show: