WebUIView.FrameNavigationStarting 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.
Occurs just before the view navigates to new content.
// Register
event_token FrameNavigationStarting(TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
// Revoke with event_token
void FrameNavigationStarting(event_token const* cookie) const;
// Revoke with event_revoker
WebUIView::FrameNavigationStarting_revoker FrameNavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> FrameNavigationStarting;
function onFrameNavigationStarting(eventArgs) { /* Your code */ }
webUIView.addEventListener("framenavigationstarting", onFrameNavigationStarting);
webUIView.removeEventListener("framenavigationstarting", onFrameNavigationStarting);
- or -
webUIView.onframenavigationstarting = onFrameNavigationStarting;
Public Custom Event FrameNavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) Implements FrameNavigationStarting