This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Retrieves a value that indicates the current state of the WebBrowser.
Syntax
n = WebBrowser_ReadyState (hWnd, ctrlID)
Returns
Number, one of the following equates:
Equate |
Meaning |
%WebBrowser_ReadyState_Uninitialized |
Object is not initialized with data. |
%WebBrowser_ReadyState_Loading |
Object is loading its data. |
%WebBrowser_ReadyState_Loaded |
Object has finished loading its data. |
%WebBrowser_ReadyState_Interactive |
User can interact with the object even though it is not fully loaded. |
%WebBrowser_ReadyState_Complete |
Object is completely initialized. |
Parameters
Name |
Type |
Optional |
Meaning |
hWnd |
Number |
No |
Handle of the dialog containing the control |
ctrlID |
Number |
No |
Control identifier |
Remarks
A WebBrowser state is initially set to uninitialized, and then to loading. When data loading is complete, the state of the link WebBrowser passes through the loaded and interactive states to reach the complete state.
The states through which a WebBrowser passes are determined by that WebBrowser; a WebBrowser can skip certain states (for example, interactive) if the state does not apply to that WebBrowser.
Restrictions
See also
Examples