Web Browser Class
Definition
Enables the user to navigate Web pages inside your form.
Examples
The following code example demonstrates how to implement an address bar for use with the WebBrowser control. This example requires that you have a form that contains a WebBrowser control called webBrowser1 , a TextBox control called TextBoxAddress , and a Button control called ButtonGo . When you type a URL into the text box and press ENTER or click the Go button, the WebBrowser control navigates to the URL specified. When you navigate by clicking a hyperlink, the text box automatically updates to display the current URL.
Remarks
The WebBrowser control lets you host Web pages and other browser-enabled documents in your Windows Forms applications. You can use the WebBrowser control, for example, to provide integrated HTML-based user assistance or Web browsing capabilities in your application. Additionally, you can use the WebBrowser control to add your existing Web-based controls to your Windows Forms client applications.
The WebBrowser control is resource-intensive. Be sure to call the Dispose() method when you are finished using the control to ensure that all resources are released in a timely fashion. You must call the Dispose() method on the same thread that attached the events, which should always be the message or user-interface (UI) thread.
The WebBrowser control cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
The WebBrowser control has several properties, methods, and events related to navigation. The following members let you navigate the control to a specific URL, move backward and forward through the navigation history list, and load the home page and search page of the current user:
If the navigation is unsuccessful, a page indicating the problem is displayed. Navigation with any of these members causes the Navigating, Navigated, and DocumentCompleted events to occur at different stages of navigation.
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. Some members are useful even when you do not want to display the WebBrowser control on your form. For example, you can use the Print method to print the latest version of a Web page without displaying the page to the user.
The WebBrowser control also lets you display content that you create in your application or you retrieve from a database or resource file. Use the DocumentText or DocumentStream property to get or set the contents of the current document as a string or data stream.
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. This property is useful, when used in combination with the ObjectForScripting property, to implement two-way communication between your application code and dynamic HTML (DHTML) code in a Web page, letting you combine Web-based controls and Windows Forms controls in a single user interface. You can use the Document property to call scripting code methods from your application. Your scripting code can access your application through the window.external object, which is a built-in DOM object provided for host access, and which maps to the object that you specify for the ObjectForScripting property.
The WebBrowser control is a managed wrapper for the ActiveX WebBrowser control, and uses whichever version of the control is installed on the user’s computer.
This class makes security demands at the class level. A SecurityException is thrown when a derived class or any caller in the call stack does not have full trust permission. For details about security demands, see Link Demands and Inheritance Demands.
The WebBrowser class can only be used in threads set to single thread apartment (STA) mode. To use this class, ensure that your Main method is marked with the STAThreadAttribute attribute.
Constructors
Initializes a new instance of the WebBrowser class.
Properties
Gets the AccessibleObject assigned to the control.
Gets or sets the default action description of the control for use by accessibility client applications.
Gets or sets the description of the control used by accessibility client applications.
Gets or sets the name of the control used by accessibility client applications.
Gets or sets the accessible role of the control.
This API supports the product infrastructure and is not intended to be used directly from your code.
Gets the underlying ActiveX WebBrowser control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets or sets a value indicating whether the control can navigate to another page after its initial page has been loaded.
Gets or sets a value indicating whether the WebBrowser control navigates to documents that are dropped onto it.
Gets or sets the edges of the container to which a control is bound and determines how a control is resized with its parent.
Gets or sets where this control is scrolled to in ScrollControlIntoView(Control).
This property is not relevant for this class.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not meaningful for this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets or sets the BindingContext for the control.
Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container’s client area.
Gets or sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.
Gets a value indicating whether the ImeMode property can be set to an active value, to enable IME support.
Gets a value indicating whether the control can receive focus.
Gets a value indicating whether a previous page in navigation history is available, which allows the GoBack() method to succeed.
Gets a value indicating whether a subsequent page in navigation history is available, which allows the GoForward() method to succeed.
Determines if events can be raised on the control.
Gets a value indicating whether the control can be selected.
Gets or sets a value indicating whether the control has captured the mouse.
Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus.
Gets the rectangle that represents the client area of the control.
Gets or sets the height and width of the client area of the control.
Gets the name of the company or creator of the application containing the control.
Gets the IContainer that contains the Component.
Gets a value indicating whether the control, or one of its child controls, currently has the input focus.
Gets or sets the shortcut menu associated with the control.
Gets or sets the ContextMenuStrip associated with this control.
Gets the collection of controls contained within the control.
Gets a value indicating whether the control has been created.
Gets the required creation parameters when the control handle is created.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets the data bindings for the control.
Gets or sets the default cursor for the control.
Gets the default Input Method Editor (IME) mode supported by the control.
Gets the space, in pixels, that is specified by default between controls.
Gets the length and height, in pixels, that is specified as the default maximum size of a control.
Gets the length and height, in pixels, that is specified as the default minimum size of a control.
Gets the internal spacing, in pixels, of the contents of a control.
Gets the default size of the control.
Gets a value that indicates whether the Component is currently in design mode.
Gets the DPI value for the display device where the control is currently being displayed.
Gets the rectangle that represents the display area of the control.
Gets a value indicating whether the base Control class is in the process of disposing.
Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.
Gets an HtmlDocument representing the Web page currently displayed in the WebBrowser control.
Gets or sets a stream containing the contents of the Web page displayed in the WebBrowser control.
Gets or sets the HTML contents of the page displayed in the WebBrowser control.
Gets the title of the document currently displayed in the WebBrowser control.
Gets the type of the document currently displayed in the WebBrowser control.
Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets a value indicating the encryption method used by the document currently displayed in the WebBrowser control.
Gets the list of event handlers that are attached to this Component.
Gets a value indicating whether the control or any of its child windows has input focus.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not meaningful for this control.
Gets or sets the height of the font of the control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not meaningful for this control.
Gets the window handle that the control is bound to.
Gets a value indicating whether the control contains one or more child controls.
Gets or sets the height of the control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not meaningful for this control.
Gets or sets the IME mode of a control.
Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.
Gets or sets a value indicating whether the control is visible to accessibility applications.
Gets a value indicating whether the WebBrowser control is currently loading a new document.
Gets a value indicating whether the control has been disposed of.
Gets a value indicating whether the control has a handle associated with it.
Gets a value indicating whether the control is mirrored.
Gets a value indicating whether the WebBrowser control is in offline mode.
Gets or a sets a value indicating whether the shortcut menu of the WebBrowser control is enabled.
Gets a cached instance of the control’s layout engine.
Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container’s client area.
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
Gets or sets the space between controls.
Gets or sets the size that is the upper limit that GetPreferredSize(Size) can specify.
Gets or sets the size that is the lower limit that GetPreferredSize(Size) can specify.
Gets or sets the name of the control.
Gets or sets an object that can be accessed by scripting code that is contained within a Web page displayed in the WebBrowser control.
This property is not meaningful for this control.
Gets or sets the parent container of the control.
Gets the size of a rectangular area into which the control can fit.
Gets the product name of the assembly containing the control.
Gets the version of the assembly containing the control.
Gets a value indicating the current state of the WebBrowser control.
Gets a value indicating whether the control is currently re-creating its handle.
Gets or sets the window region associated with the control.
This property is now obsolete.
Gets or sets a value indicating whether the control redraws itself when resized.
Gets the distance, in pixels, between the right edge of the control and the left edge of its container’s client area.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets a value that determines the scaling of child controls.
Gets or sets a value indicating whether the WebBrowser displays dialog boxes such as script error messages.
Gets or sets a value indicating whether scroll bars are displayed in the WebBrowser control.
Gets a value indicating whether the control should display focus rectangles.
Gets a value indicating whether the user interface is in the appropriate state to show or hide keyboard accelerators.
This API supports the product infrastructure and is not intended to be used directly from your code.
Gets or sets the site of the control.
Gets or sets the height and width of the control.
Gets the status text of the WebBrowser control.
Gets or sets the tab order of the control within its container.
Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.
Gets or sets the object that contains data about the control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container’s client area.
Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost Form that the control is contained in.
Gets or sets the URL of the current document.
This API supports the product infrastructure and is not intended to be used directly from your code.
This property is not supported by this control.
Gets the version of Internet Explorer installed.
Gets or sets a value indicating whether the control and all its child controls are displayed.
Gets or sets a value indicating whether keyboard shortcuts are enabled within the WebBrowser control.
Gets or sets the width of the control.
This property is not relevant for this class.
Methods
Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.
Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control .
Called by the control when the underlying ActiveX control is created.
Executes the specified delegate asynchronously on the thread that the control’s underlying handle was created on.
Executes the specified delegate asynchronously with the specified arguments, on the thread that the control’s underlying handle was created on.
Brings the control to the front of the z-order.
Retrieves a value indicating whether the specified control is a child of the control.
Creates a new accessibility object for the control.
Forces the creation of the visible control, including the creation of the handle and any visible child controls.
Creates a new instance of the control collection for the control.
Creates the Graphics for the control.
Creates a handle for the control.
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
Associates the underlying ActiveX control with a client that can handle control events.
Returns a reference to the unmanaged WebBrowser ActiveX control site, which you can extend to customize the managed WebBrowser control.
Sends the specified message to the default window procedure.
Destroys the handle associated with the control.
Called by the control when the underlying ActiveX control is discarded.
Releases the event-handling client attached in the CreateSink() method from the underlying ActiveX control.
Releases all resources used by the Component.
Releases the unmanaged resources used by the WebBrowser and optionally releases the managed resources.
Begins a drag-and-drop operation.
This API supports the product infrastructure and is not intended to be used directly from your code.
This method is not supported by this control.
Retrieves the return value of the asynchronous operation represented by the IAsyncResult passed.
Determines whether the specified object is equal to the current object.
Retrieves the form that the control is on.
Sets input focus to the control.
Retrieves the specified AccessibleObject.
Retrieves a value indicating how a control will behave when its AutoSize property is enabled.
Retrieves the child control that is located at the specified coordinates.
Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.
Returns the next ContainerControl up the control’s chain of parent controls.
Serves as the default hash function.
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
Retrieves the next control forward or back in the tab order of child controls.
Retrieves the size of a rectangular area into which a control can be fitted.
Retrieves the bounds within which the control is scaled.
Returns an object that represents a service provided by the Component or by its Container.
Retrieves the value of the specified control style bit for the control.
Determines if the control is a top-level control.
Gets the Type of the current instance.
Navigates the WebBrowser control to the previous page in the navigation history, if one is available.
Navigates the WebBrowser control to the next page in the navigation history, if one is available.
Navigates the WebBrowser control to the home page of the current user.
Navigates the WebBrowser control to the default search page of the current user.
Conceals the control from the user.
Obtains a lifetime service object to control the lifetime policy for this instance.
Called after the control has been added to another container.
Invalidates the entire surface of the control and causes the control to be redrawn.
Invalidates a specific region of the control and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
Invalidates the specified region of the control (adds it to the control’s update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.
Invalidates the specified region of the control (adds it to the control’s update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
Invalidates the specified region of the control (adds it to the control’s update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.
Invalidates the specified region of the control (adds it to the control’s update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
Executes the specified delegate on the thread that owns the control’s underlying window handle.
Executes the specified delegate, on the thread that owns the control’s underlying window handle, with the specified list of arguments.
Raises the GotFocus event for the specified control.
Raises the LostFocus event for the specified control.
Raises the Click event for the specified control.
Raises the Paint event for the specified control.
Raises the PaintBackground event for the specified control.
This API supports the product infrastructure and is not intended to be used directly from your code.
Determines if a character is an input character that the control recognizes.
Determines whether the specified key is a regular input key or a special key that requires preprocessing.
Converts a Logical DPI value to its equivalent DeviceUnit DPI value.
Transforms a size from logical to device units by scaling it for the current DPI and rounding down to the nearest integer value for width and height.
Creates a shallow copy of the current Object.
Creates a shallow copy of the current MarshalByRefObject object.
Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, replacing the previous document.
Loads the document at the specified Uniform Resource Locator (URL) into a new browser window or into the WebBrowser control.
Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, replacing the contents of the Web page frame with the specified name.
Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.
Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the previous document.
Loads the document at the location indicated by the specified Uri into a new browser window or into the WebBrowser control.
Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the contents of the Web page frame with the specified name.
Loads the document at the location indicated by the specified Uri into the WebBrowser control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.
Raises the Invalidated event with a specified region of the control to invalidate.
This API supports the product infrastructure and is not intended to be used directly from your code.
This API supports the product infrastructure and is not intended to be used directly from your code.
This API supports the product infrastructure and is not intended to be used directly from your code.
This API supports the product infrastructure and is not intended to be used directly from your code.
This API supports the product infrastructure and is not intended to be used directly from your code.
This API supports the product infrastructure and is not intended to be used directly from your code.
Notifies the control of Windows messages.
Paints the background of the control.
Raises the BackColorChanged event when the BackColor property value of the control’s container changes.
Raises the BackgroundImageChanged event when the BackgroundImage property value of the control’s container changes.
Raises the BindingContextChanged event when the BindingContext property value of the control’s container changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
Raises the EnabledChanged event when the Enabled property value of the control’s container changes.
Raises the FontChanged event when the Font property value of the control’s container changes.
Raises the ForeColorChanged event when the ForeColor property value of the control’s container changes.
Raises the RightToLeftChanged event when the RightToLeft property value of the control’s container changes.
Raises the VisibleChanged event when the Visible property value of the control’s container changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This method is not meaningful for this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
Forces the control to apply layout logic to all its child controls.
Forces the control to apply layout logic to all its child controls.
Computes the location of the specified screen point into client coordinates.
Computes the location of the specified client point into screen coordinates.
Preprocesses keyboard or input messages within the message loop before they are dispatched.
This API supports the product infrastructure and is not intended to be used directly from your code.
Preprocesses keyboard or input messages within the message loop before they are dispatched.
Prints the document currently displayed in the WebBrowser control using the current print and page settings.
Processes a command key.
Processes a dialog character.
This API supports the product infrastructure and is not intended to be used directly from your code.
Processes a dialog key if the WebBrowser ActiveX control does not process it.
Processes a key message and generates the appropriate control events.
Processes a keyboard message.
Previews a keyboard message.
This API supports the product infrastructure and is not intended to be used directly from your code.
Processes a mnemonic character.
Raises the appropriate drag event.
Raises the appropriate key event.
Raises the appropriate mouse event.
Raises the appropriate paint event.
Forces the re-creation of the handle for the control.
Computes the size and location of the specified screen rectangle in client coordinates.
Computes the size and location of the specified client rectangle in screen coordinates.
Reloads the document currently displayed in the WebBrowser control by checking the server for an updated version.
Reloads the document currently displayed in the WebBrowser control using the specified refresh options.
Provides constants for rescaling the control when a DPI change occurs.
Resets the BackColor property to its default value.
Causes a control bound to the BindingSource to reread all the items in the list and refresh their displayed values.
Resets the Cursor property to its default value.
Resets the Font property to its default value.
Resets the ForeColor property to its default value.
Resets the ImeMode property to its default value.
Resets the control to handle the MouseLeave event.
Resets the RightToLeft property to its default value.
Resets the Text property to its default value (Empty).
Resumes usual layout logic.
Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests.
Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text.
Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text.
Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text.
Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text.
Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text.
Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text.
Scales the control and any child controls.
Scales the entire control and any child controls.
Scales the control and all child controls by the specified scaling factor.
Scales a logical bitmap value to it’s equivalent device unit value when a DPI change occurs.
Scales a control’s location, size, padding and margin.
This method is not relevant for this class.
Activates the control.
Activates a child control. Optionally specifies the direction in the tab order to select the control from.
Activates the next control.
Sends the control to the back of the z-order.
Sets a value indicating how a control will behave when its AutoSize property is enabled.
Sets the bounds of the control to the specified location and size.
Sets the specified bounds of the control to the specified location and size.
Performs the work of setting the specified bounds of this control.
Sets the size of the client area of the control.
Sets a specified ControlStyles flag to either true or false .
Sets the control as the top-level control.
Sets the control to the specified visible state.
Displays the control to the user.
Opens the Internet Explorer Page Setup dialog box.
Opens the Internet Explorer Print dialog box without setting header and footer values.
Opens the Internet Explorer Print Preview dialog box.
Opens the Internet Explorer Properties dialog box for the current document.
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.
Determines the size of the entire control from the height and width of its client area.
Cancels any pending navigation and stops any dynamic page elements, such as background sounds and animations.
Temporarily suspends the layout logic for the control.
Returns a String containing the name of the Component, if any. This method should not be overridden.
Causes the control to redraw the invalidated regions within its client area.
Updates the bounds of the control with the current size and location.
Updates the bounds of the control with the specified size and location.
Updates the bounds of the control with the specified size, location, and client size.
Forces the assigned styles to be reapplied to the control.
Updates the control in its parent’s z-order.
Processes Windows messages.
Events
This event is not relevant for this class.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the CanGoBack property value changes.
Occurs when the CanGoForward property value changes.
Occurs when the value of the CausesValidation property changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
Occurs when the focus or keyboard user interface (UI) cues change.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the value of the ClientSize property changes.
Occurs when the value of the ContextMenu property changes.
Occurs when the value of the ContextMenuStrip property changes.
Occurs when a new control is added to the Control.ControlCollection.
Occurs when a control is removed from the Control.ControlCollection.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the component is disposed by a call to the Dispose() method.
Occurs when the value of the Dock property changes.
Occurs when the WebBrowser control finishes loading a document.
Occurs when the DocumentTitle property value changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the DPI setting for a control is changed programmatically after the DPI of its parent control or form has changed.
Occurs when the DPI setting for a control is changed programmatically before a DPI change event for its parent control or form has occurred.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the WebBrowser control navigates to or away from a Web site that uses encryption.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the WebBrowser control downloads a file.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the control receives focus.
Occurs when a handle is created for the control.
Occurs when the control’s handle is in the process of being destroyed.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when a control’s display requires redrawing.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the Location property value has changed.
Occurs when the control loses focus.
Occurs when the control’s margin changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the control is moved.
Occurs when the WebBrowser control has navigated to a new document and has begun loading it.
Occurs before the WebBrowser control navigates to a new document.
Occurs before a new browser window is opened.
Occurs when the value of the Padding property changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the Parent property value changes.
Occurs before the KeyDown event when a key is pressed while focus is on this control.
Occurs when the WebBrowser control has updated information on the download progress of a document it is navigating to.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the value of the Region property changes.
Occurs when the control is resized.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the Size property value changes.
Occurs when the StatusText property value changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the system colors change.
Occurs when the TabIndex property value changes.
Occurs when the TabStop property value changes.
This API supports the product infrastructure and is not intended to be used directly from your code.
This event is not supported by this control.
Occurs when the control is finished validating.
Occurs when the control is validating.
Occurs when the Visible property value changes.
