MapControl.MapDoubleTapped Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the user double-taps the MapControl. An instance of MapInputEventArgs provides data for this event.
// 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)