MapControl.MapElementClick Event

Definition

Occurs when the user taps or clicks a MapElement on the MapControl.

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

Event Type

Applies to