WebBrowserReadyState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies constants that define the state of the WebBrowser control.
public enum class WebBrowserReadyState
public enum WebBrowserReadyState
type WebBrowserReadyState =
Public Enum WebBrowserReadyState
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Uninitialized | 0 | No document is currently loaded. |
Loading | 1 | The control is loading a new document. |
Loaded | 2 | The control has loaded and initialized the new document, but has not yet received all the document data. |
Interactive | 3 | The control has loaded enough of the document to allow limited user interaction, such as clicking hyperlinks that have been displayed. |
Complete | 4 | The control has finished loading the new document and all its contents. |
Remarks
This enumeration is used by the WebBrowser.ReadyState property to indicate the current state of the WebBrowser control.