MapControl.MapDoubleTapped Kejadian

Definisi

Terjadi saat pengguna mengetuk dua kali MapControl. Instans MapInputEventArgs menyediakan data untuk peristiwa ini.

// 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) 

Jenis Acara

Berlaku untuk

Lihat juga