WebViewControl.FrameNavigationCompleted Event

Definition

An event that is triggered when a frame in the control has finished loading its content.

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

// Register
event_token FrameNavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::FrameNavigationCompleted_revoker FrameNavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> FrameNavigationCompleted;
function onFrameNavigationCompleted(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framenavigationcompleted", onFrameNavigationCompleted);
webViewControl.removeEventListener("framenavigationcompleted", onFrameNavigationCompleted);
- or -
webViewControl.onframenavigationcompleted = onFrameNavigationCompleted;
Public Custom Event FrameNavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) Implements FrameNavigationCompleted

Event Type

Implements

Applies to