VideoStabilizationEffect.EnabledChanged É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.
Se produit lorsque la valeur de la propriété VideoStabilizationEffect.Enabled change.
// Register
event_token EnabledChanged(TypedEventHandler<VideoStabilizationEffect, VideoStabilizationEffectEnabledChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void EnabledChanged(event_token const* cookie) const;
// Revoke with event_revoker
VideoStabilizationEffect::EnabledChanged_revoker EnabledChanged(auto_revoke_t, TypedEventHandler<VideoStabilizationEffect, VideoStabilizationEffectEnabledChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<VideoStabilizationEffect,VideoStabilizationEffectEnabledChangedEventArgs> EnabledChanged;
function onEnabledChanged(eventArgs) { /* Your code */ }
videoStabilizationEffect.addEventListener("enabledchanged", onEnabledChanged);
videoStabilizationEffect.removeEventListener("enabledchanged", onEnabledChanged);
- or -
videoStabilizationEffect.onenabledchanged = onEnabledChanged;
Public Custom Event EnabledChanged As TypedEventHandler(Of VideoStabilizationEffect, VideoStabilizationEffectEnabledChangedEventArgs)