Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

VideoStabilizationEffect.EnabledChanged Event

Definition

Namespace:
Windows.Media.Core

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.

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


Feedback

Was this page helpful?