MapControl.MapDoubleTapped 事件

定義

發生于使用者按兩下 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) 

事件類型

適用於

另請參閱