GuidanceNavigator.GuidanceUpdated イベント

定義

ナビゲーション ガイダンスが更新されたときに発生します。

手記

この API は、すべての Windows アプリで使用できるわけではありません。 開発者アカウントが Microsoft によって特別にプロビジョニングされていない限り、この API の呼び出しは実行時に失敗します。 Windows.Services.Maps.Guidance 名前空間の詳細については、Microsoft アカウント チームの担当者にお問い合わせください。

// Register
event_token GuidanceUpdated(TypedEventHandler<GuidanceNavigator, GuidanceUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GuidanceNavigator::GuidanceUpdated_revoker GuidanceUpdated(auto_revoke_t, TypedEventHandler<GuidanceNavigator, GuidanceUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,GuidanceUpdatedEventArgs> GuidanceUpdated;
function onGuidanceUpdated(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("guidanceupdated", onGuidanceUpdated);
guidanceNavigator.removeEventListener("guidanceupdated", onGuidanceUpdated);
- or -
guidanceNavigator.onguidanceupdated = onGuidanceUpdated;
Public Custom Event GuidanceUpdated As TypedEventHandler(Of GuidanceNavigator, GuidanceUpdatedEventArgs) 

イベントの種類

適用対象