AudioCaptureEffectsManager.AudioCaptureEffectsChanged 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.
Occurs when audio process chain changes.
// Register
event_token AudioCaptureEffectsChanged(TypedEventHandler<AudioCaptureEffectsManager, IInspectable const&> const& handler) const;
// Revoke with event_token
void AudioCaptureEffectsChanged(event_token const* cookie) const;
// Revoke with event_revoker
AudioCaptureEffectsManager::AudioCaptureEffectsChanged_revoker AudioCaptureEffectsChanged(auto_revoke_t, TypedEventHandler<AudioCaptureEffectsManager, IInspectable const&> const& handler) const;
public event TypedEventHandler<AudioCaptureEffectsManager,object> AudioCaptureEffectsChanged;
function onAudioCaptureEffectsChanged(eventArgs) { /* Your code */ }
audioCaptureEffectsManager.addEventListener("audiocaptureeffectschanged", onAudioCaptureEffectsChanged);
audioCaptureEffectsManager.removeEventListener("audiocaptureeffectschanged", onAudioCaptureEffectsChanged);
- or -
audioCaptureEffectsManager.onaudiocaptureeffectschanged = onAudioCaptureEffectsChanged;
Public Custom Event AudioCaptureEffectsChanged As TypedEventHandler(Of AudioCaptureEffectsManager, Object)
Event Type
TypedEventHandler<AudioCaptureEffectsManager,IInspectable>