AdControl.IsEngagedChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsque l’utilisateur clique sur la bannière publicitaire et interagit avec celle-ci plutôt qu’avec l’application.
// Register
event_token IsEngagedChanged(EventHandler<RoutedEventArgs> const& handler) const;
// Revoke with event_token
void IsEngagedChanged(event_token const* cookie) const;
// Revoke with event_revoker
AdControl::IsEngagedChanged_revoker IsEngagedChanged(auto_revoke_t, EventHandler<RoutedEventArgs> const& handler) const;
public event System.EventHandler<RoutedEventArgs> IsEngagedChanged;
function onIsEngagedChanged(eventArgs) { /* Your code */ }
adControl.addEventListener("isengagedchanged", onIsEngagedChanged);
adControl.removeEventListener("isengagedchanged", onIsEngagedChanged);
- or -
adControl.onisengagedchanged = onIsEngagedChanged;
Public Custom Event IsEngagedChanged As EventHandler(Of RoutedEventArgs)