MapControl.MapElementClick 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 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)