Partager via


CustomMapTileDataSource.BitmapRequested Événement

Définition

Se produit lorsque la bitmap est demandée pour un CustomMapTileDataSource. Un instance de MapTileBitmapRequestedEventArgs fournit des données pour cet événement.

// Register
event_token BitmapRequested(TypedEventHandler<CustomMapTileDataSource, MapTileBitmapRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CustomMapTileDataSource::BitmapRequested_revoker BitmapRequested(auto_revoke_t, TypedEventHandler<CustomMapTileDataSource, MapTileBitmapRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<CustomMapTileDataSource,MapTileBitmapRequestedEventArgs> BitmapRequested;
function onBitmapRequested(eventArgs) { /* Your code */ }
customMapTileDataSource.addEventListener("bitmaprequested", onBitmapRequested);
customMapTileDataSource.removeEventListener("bitmaprequested", onBitmapRequested);
- or -
customMapTileDataSource.onbitmaprequested = onBitmapRequested;
Public Custom Event BitmapRequested As TypedEventHandler(Of CustomMapTileDataSource, MapTileBitmapRequestedEventArgs) 

Type d'événement

S’applique à

Voir aussi