MapControl.MapHolding イベント

定義

ユーザーが MapControl をタップして保持すると発生します。 MapInputEventArgs のインスタンスは、このイベントのデータを提供します。

// Register
event_token MapHolding(TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
MapControl::MapHolding_revoker MapHolding(auto_revoke_t, TypedEventHandler<MapControl, MapInputEventArgs const&> const& handler) const;
public event TypedEventHandler<MapControl,MapInputEventArgs> MapHolding;
function onMapHolding(eventArgs) { /* Your code */ }
mapControl.addEventListener("mapholding", onMapHolding);
mapControl.removeEventListener("mapholding", onMapHolding);
- or -
mapControl.onmapholding = onMapHolding;
Public Custom Event MapHolding As TypedEventHandler(Of MapControl, MapInputEventArgs) 

イベントの種類

適用対象

こちらもご覧ください