
Occurs when the value of the Padding property changes. Occurs before a new browser window is opened. Occurs before the WebBrowser control navigates to a new document. Occurs when the WebBrowser control has navigated to a new document and has begun loading it. Occurs when the control's margin changes. Occurs when the Location property value has changed. Occurs when a control's display requires redrawing. Occurs when the control's handle is in the process of being destroyed. Occurs when a handle is created for the control. Occurs when the WebBrowser control downloads a file. Occurs when the WebBrowser control navigates to or away from a Web site that uses encryption. Occurs when the DocumentTitle property value changes. Occurs when the WebBrowser control finishes loading a document. Occurs when the value of the Dock property changes. Occurs when the component is disposed by a call to the Dispose method. Occurs when a control is removed from the Control.ControlCollection. Occurs when a new control is added to the Control.ControlCollection. Occurs when the value of the ContextMenuStrip property changes. Occurs when the value of the ContextMenu property changes. Occurs when the value of the ClientSize property changes. Occurs when the focus or keyboard user interface (UI) cues change. Occurs when the value of the CausesValidation property changes. Occurs when the CanGoForward property value changes. Occurs when the CanGoBack property value changes.

This event is not supported by this control. This event is not relevant for this class. Opens the Internet Explorer Save Web Page dialog box or the Save dialog box of the hosted document if it is not an HTML page Opens the Internet Explorer Properties dialog box for the current document. Opens the Internet Explorer Print Preview dialog box. Opens the Internet Explorer Print dialog box without setting header and footer values. Opens the Internet Explorer Page Setup dialog box. Reloads the document currently displayed in the WebBrowser control. Prints the document currently displayed in the WebBrowser control using the current print and page settings. Loads the document at the specified location into the WebBrowser control. Navigates the WebBrowser control to the default search page of the current user. Navigates the WebBrowser control to the home page of the current user. Navigates the WebBrowser control to the next page in the navigation history, if one is available. Navigates the WebBrowser control to the previous page in the navigation history, if one is available. Gets or sets the URL of the current document. Gets the status text of the WebBrowser control. Gets or sets a value indicating whether scroll bars are displayed in the WebBrowser control. Gets a value indicating the current state of the WebBrowser control.
MENUSTRIP WEBBROWSE NAVIGATE OFFLINE
Gets or sets a value indicating whether the WebBrowser control is in offline mode. Gets a value indicating whether the WebBrowser control is currently loading a new document. Gets the type of the document currently displayed in the WebBrowser control. Gets the title of the document currently displayed in the WebBrowser control. Gets or sets the HTML contents of the page displayed in the WebBrowser control. Gets or sets a stream containing the contents of the Web page displayed in the WebBrowser control. Gets an HtmlDocument representing the Web page currently displayed in the WebBrowser control. Gets a value indicating whether a subsequent page in navigation history is available, which allows the GoForward method to succeed. Gets a value indicating whether a previous page in navigation history is available, which allows the GoBack method to succeed. Gets or sets a value indicating whether the control can navigate to another page after its initial page has been loaded. You can also manipulate the contents of a Web page through the Document property, which contains an HtmlDocument object that provides managed access to the HTML document object model (DOM) for the current page.

Use the DocumentText or DocumentStream property to get or set the contents of the current document as a string or data stream. The WebBrowser control also lets you display content that you create in your application or you retrieve from a database or resource file. For example, you can use the Print method to print the latest version of a Web page without displaying the page to the user. Some members are useful even when you do not want to display the WebBrowser control on your form. These and other members, such as the Stop and Refresh methods, let you implement user interface controls in your application similar to those in Internet Explorer. Navigation with any of these members causes the Navigating, Navigated, and DocumentCompleted events to occur at different stages of navigation. If the navigation is unsuccessful, a page indicating the problem is displayed. WebBrowser - Allows you to navigate web pages inside your form.
