WebBrowser

Wisej.Web.WebBrowser

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a web browser control that enables the user to navigate web pages inside a form or a page.

public class WebBrowser : Control

Constructors

Initializes a new instance of the WebBrowser class.

Initializes a new instance of the WebBrowser class with a URL as a string and an event handler for the DocumentCompleted event.

NameTypeDescription

url

The URL of the webpage to be loaded in the WebBrowser as a string.

onDocumentCompleted

An Action delegate to handle the DocumentCompleted event. Can be null.

Initializes a new instance of the WebBrowser class with a specified location and size.

NameTypeDescription

location

The location of the WebBrowser on its parent control.

size

The size of the WebBrowser.

onDocumentCompleted

An Action delegate to handle the DocumentCompleted event. Can be null.

Initializes a new instance of the WebBrowser class with the specified settings.

NameTypeDescription

url

The URL of the webpage to be loaded in the WebBrowser as a string.

location

The location of the WebBrowser on its parent control.

size

The size of the WebBrowser.

onDocumentCompleted

An Action delegate to handle the DocumentCompleted event. Can be null.

Properties

BorderStyle: Indicates the border style for the control. (Default: Solid)

Boolean: Returns or sets a value indicating whether scroll bars are displayed in the WebBrowser control. (Default: True)

Uri: Returns or sets the URL of the current document. (Default: null)

Throws:

Methods

Navigates the WebBrowser control to the previous page in the navigation history, if one is available.

Due to IFrame security constraints, this method will not work when the source of the IFrame content is from a different domain.

Navigates the WebBrowser control to the next page in the navigation history, if one is available.

Due to IFrame security constraints, this method will not work when the source of the IFrame content is from a different domain.

Loads the document at the location indicated by the specified Uri into the WebBrowser control.

ParameterTypeDescription

url

A Uri representing the URL of the document to load.

Throws:

Loads the document at the specified Uniform Resource Locator (URL) into the WebBrowser control.

ParameterTypeDescription

url

The URL of the document to load.

Events

WebBrowserDocumentCompletedEventHandler Fired when the WebBrowser control finishes loading a web page.

Implements

NameDescription

Bindable components implement this interface.

Controls that support drag & drop operations implement this interface.

All wisej components implement this interface.

All wisej controls derived from the Control class must implement this interface.

Allows an object to serialize itself.

Last updated