AdControl.IsEngagedChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised when the user clicks the banner ad and is interacting with it rather than the app.
// 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)