IWebViewControl.NavigationCompleted イベント

定義

IWebViewControl が現在のコンテンツの読み込みを完了したとき、またはナビゲーションに失敗した場合に発生します。

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

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

// Revoke with event_revoker
IWebViewControl::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("navigationcompleted", onNavigationCompleted);
iWebViewControl.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
iWebViewControl.onnavigationcompleted = onNavigationCompleted;
Event NavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) 

イベントの種類

注釈

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

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

適用対象