Partager via


MapElementsLayer.MapElementClick Événement

Définition

Se produit lorsque l’utilisateur appuie ou clique sur un élément MapElement qui a été ajouté à MapElementsLayer.

// Register
event_token MapElementClick(TypedEventHandler<MapElementsLayer, MapElementsLayerClickEventArgs const&> const& handler) const;

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

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

Type d'événement

Remarques

Les interactions tactiles, souris et stylet/stylet sont reçues, traitées et gérées en tant que pointeurs. L’un de ces appareils et leurs interactions peuvent produire un événement MapElementsClick. Un instance de MapElementsLayerClickEventArgs fournit des données pour cet événement.

S’applique à