次の方法で共有


LocalMapTileDataSource.UriRequested イベント

定義

LocalMapTileDataSource に対してタイルが要求されたときに発生します。 MapTileUriRequestedEventArgs のインスタンスは、このイベントのデータを提供します。

// Register
event_token UriRequested(TypedEventHandler<LocalMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
LocalMapTileDataSource::UriRequested_revoker UriRequested(auto_revoke_t, TypedEventHandler<LocalMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<LocalMapTileDataSource,MapTileUriRequestedEventArgs> UriRequested;
function onUriRequested(eventArgs) { /* Your code */ }
localMapTileDataSource.addEventListener("urirequested", onUriRequested);
localMapTileDataSource.removeEventListener("urirequested", onUriRequested);
- or -
localMapTileDataSource.onurirequested = onUriRequested;
Public Custom Event UriRequested As TypedEventHandler(Of LocalMapTileDataSource, MapTileUriRequestedEventArgs) 

イベントの種類

適用対象

こちらもご覧ください