Wisej.Web.WebBrowserDocumentCompletedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Provides data for the DocumentCompleted event.
public class WebBrowserDocumentCompletedEventArgs : EventArgsPublic Class WebBrowserDocumentCompletedEventArgs
Inherits EventArgsInitializes a new instance of the class.
: Returns the location of the document where the control has navigated.
url
The Uri of the document that was loaded.
Represents the method that will handle the DocumentCompleted event of the WebBrowser control.
Wisej.Web.WebBrowser
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Represents a web browser control that enables the user to navigate web pages inside a form or a page.
Initializes a new instance of the class.
: Indicates the border style for the control.
: Returns or sets a value indicating whether scroll bars are displayed in the control.
: 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 .
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.
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.
Loads the document at the location indicated by the specified into the control.
Throws:
The url parameter value does not represent an absolute URI. For more information, see .
Loads the document at the specified Uniform Resource Locator (URL) into the control.
Fired when the control finishes loading a web page.
url
A Uri representing the URL of the document to load.
url
The URL of the document to load.
Bindable components 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.
Public Class WebBrowser
Inherits Controlpublic class WebBrowser : ControlWisej.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)sender
The source of the event.
e
A WebBrowserDocumentCompletedEventArgs that contains the event data.
Fired when the WebBrowser control finishes loading a web page.