MapControl.MapDoubleTapped イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーが MapControl をダブルタップしたときに発生します。 MapInputEventArgs のインスタンスは、このイベントのデータを提供します。
// Register
event_token MapDoubleTapped(TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;
// Revoke with event_token
void MapDoubleTapped(event_token const* cookie) const;
// Revoke with event_revoker
MapControl::MapDoubleTapped_revoker MapDoubleTapped(auto_revoke_t, TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapInputEventArgs> MapDoubleTapped;
function onMapDoubleTapped(eventArgs) { /* Your code */ }
mapControl.addEventListener("mapdoubletapped", onMapDoubleTapped);
mapControl.removeEventListener("mapdoubletapped", onMapDoubleTapped);
- or -
mapControl.onmapdoubletapped = onMapDoubleTapped;
Public Custom Event MapDoubleTapped As TypedEventHandler(Of MapControl, MapInputEventArgs)