MapControl.MapElementClick イベント

定義

ユーザーが MapControlMapElement をタップまたはクリックしたときに発生します。

// 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 のインスタンスは、このイベントのデータを提供します。

適用対象