VideoStabilizationEffect.EnabledChanged Event

Definition

Occurs when the value of the VideoStabilizationEffect.Enabled property changes.

// 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) 

Event Type

Applies to