MapControl.MapDoubleTapped 이벤트

정의

사용자가 MapControl을 두 번 탭할 때 발생합니다. MapInputEventArgs의 instance 이 이벤트에 대한 데이터를 제공합니다.

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

이벤트 유형

적용 대상

추가 정보