Share via


READYSTATE

Send Feedback

This enumeration contains values that indicate what state an object is in. The values are used by the IWebBrowser2::get_ReadyState property.

Syntax

enum tagREADYSTATE{
  READYSTATE_UNINITIALIZED  =  0,
  READYSTATE_LOADING  =  1,
  READYSTATE_LOADED  =  2,
  READYSTATE_INTERACTIVE  =  3,
  READYSTATE_COMPLETE  =  4
}  READYSTATE;

Elements

  • READYSTATE_UNINITIALIZED
    Default initialization state.
  • READYSTATE_LOADING
    Object is currently loading its properties.
  • READYSTATE_LOADED
    Object has been initialized.
  • READYSTATE_INTERACTIVE
    Object is interactive, but not all of its data is available.
  • READYSTATE_COMPLETE
    Object has received all of its data.

Requirements

Pocket PC: Windows Mobile Version 5.0 and later
Smartphone: Windows Mobile Version 5.0 and later
OS Versions: Windows CE 5.01 and later
Header: ocidl.h

See Also

Internet Explorer Mobile Browser Enumerations

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.