Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WebViewControl.NewWindowRequested Event

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

An event that is triggered when a user performs an action in the control that causes content to be opened in a new window.

For more info, see Windows.Web.UI.IWebViewControl

// Register
event_token NewWindowRequested(TypedEventHandler<IWebViewControl, WebViewControlNewWindowRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void NewWindowRequested(event_token const* cookie) const;

// Revoke with event_revoker
WebViewControl::NewWindowRequested_revoker NewWindowRequested(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNewWindowRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNewWindowRequestedEventArgs> NewWindowRequested;
function onNewWindowRequested(eventArgs) { /* Your code */ }
webViewControl.addEventListener("newwindowrequested", onNewWindowRequested);
webViewControl.removeEventListener("newwindowrequested", onNewWindowRequested);
- or -
webViewControl.onnewwindowrequested = onNewWindowRequested;
Public Custom Event NewWindowRequested As TypedEventHandler(Of IWebViewControl, WebViewControlNewWindowRequestedEventArgs) Implements NewWindowRequested

Event Type

Implements

Applies to


Feedback

Was this page helpful?