次の方法で共有


WebUIView.FrameNavigationStarting イベント

定義

ビューが新しいコンテンツに移動する直前に発生します。

// 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

イベントの種類

実装

適用対象