GuidanceNavigator.Rerouting イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ナビゲーション ガイダンスが再ルーティングされるときに発生します。
手記
この API は、すべての Windows アプリで使用できるわけではありません。 開発者アカウントが Microsoft によって特別にプロビジョニングされていない限り、この API の呼び出しは実行時に失敗します。 Windows.Services.Maps.Guidance 名前空間の詳細については、Microsoft アカウント チームの担当者にお問い合わせください。
// Register
event_token Rerouting(TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;
// Revoke with event_token
void Rerouting(event_token const* cookie) const;
// Revoke with event_revoker
GuidanceNavigator::Rerouting_revoker Rerouting(auto_revoke_t, TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,object> Rerouting;
function onRerouting(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("rerouting", onRerouting);
guidanceNavigator.removeEventListener("rerouting", onRerouting);
- or -
guidanceNavigator.onrerouting = onRerouting;
Public Custom Event Rerouting As TypedEventHandler(Of GuidanceNavigator, Object)
イベントの種類
TypedEventHandler<GuidanceNavigator,IInspectable>