다음을 통해 공유


MapControl.MapElementClick 이벤트

정의

사용자가 MapControl에서 MapElement를 탭하거나 클릭할 때 발생합니다.

// Register
event_token MapElementClick(TypedEventHandler<MapControl, MapElementClickEventArgs const&> const& handler) const;

// Revoke with event_token
void MapElementClick(event_token const* cookie) const;

// Revoke with event_revoker
MapControl::MapElementClick_revoker MapElementClick(auto_revoke_t, TypedEventHandler<MapControl, MapElementClickEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapElementClickEventArgs> MapElementClick;
function onMapElementClick(eventArgs) { /* Your code */ }
mapControl.addEventListener("mapelementclick", onMapElementClick);
mapControl.removeEventListener("mapelementclick", onMapElementClick);
- or -
mapControl.onmapelementclick = onMapElementClick;
Public Custom Event MapElementClick As TypedEventHandler(Of MapControl, MapElementClickEventArgs) 

이벤트 유형

설명

터치, 마우스 및 펜/스타일러스 상호 작용은 포인터로 수신, 처리 및 관리됩니다. 이러한 디바이스와 해당 상호 작용은 MapElementClick 이벤트를 생성할 수 있습니다. MapElementClickEventArgs의 instance 이 이벤트에 대한 데이터를 제공합니다.

적용 대상