Table of Contents
WebView.NewWindow Event

Occurs when this WebView opens a new window.

Syntax
 public event NewWindowHandler NewWindow;
Event Data

The event handler receives an argument of type NewWindowEventArgs containing data related to this event. The following NewWindowEventArgs properties provide information specific to this event.

Name Description
Accepted Sets this property to true to accept the newly created WebView, otherwise the WebView will be destroyed and the new window will not open.
Height Gets the height value value requested.
IsPopup Gets a value indicating whether the new window is a popup window.
Left Gets the left position value requested.
TargetUrl Gets the target Url to be loaded in the newly created WebView.
Top Gets the top position value requested.
WebView Gets the newly created WebView object.
Width Gets the width value value requested.
WindowName Gets the name of the window to be opened.
Remarks

See here for more details about how to use this event.

See Also