WebView.FrameNavigationStarting イベント

定義

WebView 内のフレームが新しいコンテンツに移動する前に発生します。

// Register
event_token FrameNavigationStarting(TypedEventHandler<WebView, WebViewNavigationStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebView::FrameNavigationStarting_revoker FrameNavigationStarting(auto_revoke_t, TypedEventHandler<WebView, WebViewNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewNavigationStartingEventArgs> FrameNavigationStarting;
function onFrameNavigationStarting(eventArgs) { /* Your code */ }
webView.addEventListener("framenavigationstarting", onFrameNavigationStarting);
webView.removeEventListener("framenavigationstarting", onFrameNavigationStarting);
- or -
webView.onframenavigationstarting = onFrameNavigationStarting;
Public Custom Event FrameNavigationStarting As TypedEventHandler(Of WebView, WebViewNavigationStartingEventArgs) 
<WebView FrameNavigationStarting="eventhandler"/>

イベントの種類

注釈

WebViewNavigationStartingEventArgs.Cancel プロパティを true に設定することで、このイベントのハンドラー内のナビゲーションを取り消すことができます。

WebView ナビゲーション イベントは、次の順序で発生します。

同様のイベントは、WebView コンテンツ内の iframe ごとに同じ順序で発生します。

適用対象

こちらもご覧ください