All pages
Powered by GitBook
1 of 3

Loading...

Loading...

Loading...

WebBrowserDocumentCompletedEventArgs

Wisej.Web.WebBrowserDocumentCompletedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (2.5.0.0)

Provides data for the DocumentCompleted event.

public class WebBrowserDocumentCompletedEventArgs : EventArgs
Public Class WebBrowserDocumentCompletedEventArgs
    Inherits EventArgs

Constructors

WebBrowserDocumentCompletedEventArgs(url)

Initializes a new instance of the class.

Name
Type
Description

Properties

Url

: Returns the location of the document where the control has navigated.

Used By

Name
Description

url

Uri

The Uri of the document that was loaded.

WebBrowserDocumentCompletedEventHandler

Represents the method that will handle the DocumentCompleted event of the WebBrowser control.

WebBrowserDocumentCompletedEventArgs
Uri
WebBrowser

WebBrowser

Wisej.Web.WebBrowser

Namespace: Wisej.Web

Assembly: Wisej.Framework (2.5.0.0)

  • Control

    • WebBrowser

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

Constructors

WebBrowser()

Initializes a new instance of the class.

Properties

BorderStyle

: Indicates the border style for the control.

ScrollBarsEnabled

: Returns or sets a value indicating whether scroll bars are displayed in the control.

Url

: Returns or sets the URL of the current document.

Throws:

  • The specified value when setting this property is not an absolute URI. For more information, see .

Methods

GoBack()

Navigates the 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.

GoForward()

Navigates the 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.

Navigate(url)

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

Parameter
Type
Description

Throws:

  • The url parameter value does not represent an absolute URI. For more information, see .

Navigate(url)

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

Parameter
Type
Description

Events

DocumentCompleted

Fired when the control finishes loading a web page.

Implements

Name
Description

url

Uri

A Uri representing the URL of the document to load.

url

String

The URL of the document to load.

IBindableComponent

Bindable components implement this interface.

IWisejComponent

All wisej components implement this interface.

IWisejControl

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

IWisejSerializable

Allows an object to serialize itself.

Public Class WebBrowser
    Inherits Control
WebBrowser
BorderStyle
Boolean
WebBrowser
Uri
ArgumentException
IsAbsoluteUri
WebBrowser
WebBrowser
Uri
WebBrowser
ArgumentException
IsAbsoluteUri
WebBrowser
WebBrowserDocumentCompletedEventHandler
WebBrowser
public class WebBrowser : Control

WebBrowserDocumentCompletedEventHandler

Wisej.Web.WebBrowserDocumentCompletedEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (2.5.0.0)

Represents the method that will handle the DocumentCompleted event of the WebBrowser control.

public delegate void WebBrowserDocumentCompletedEventHandler(Object sender, WebBrowserDocumentCompletedEventArgs e)
Public Delegate Sub WebBrowserDocumentCompletedEventHandler(ByVal sender As [Object], ByVal e As WebBrowserDocumentCompletedEventArgs)

Parameters

Name
Type
Description

Fired By

Name
Description

sender

Object

The source of the event.

e

WebBrowserDocumentCompletedEventArgs

A WebBrowserDocumentCompletedEventArgs that contains the event data.

WebBrowser.DocumentCompleted

Fired when the WebBrowser control finishes loading a web page.