VideoStabilizationEffect.EnabledChanged イベント

定義

VideoStabilizationEffect.Enabled プロパティの値が変更されたときに発生します。

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

イベントの種類

適用対象