AdControl.IsEngagedChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se genera cuando el usuario hace clic en el anuncio de banner e interactúa con él en lugar de con la aplicación.
// 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)