AudioEffectsPackConfiguration.StatusChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
// Register
event_token StatusChanged(TypedEventHandler<AudioEffectsPackConfiguration, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
AudioEffectsPackConfiguration::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<AudioEffectsPackConfiguration, IInspectable const&> const& handler) const;
public event TypedEventHandler<AudioEffectsPackConfiguration,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
audioEffectsPackConfiguration.addEventListener("statuschanged", onStatusChanged);
audioEffectsPackConfiguration.removeEventListener("statuschanged", onStatusChanged);
- or -
audioEffectsPackConfiguration.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of AudioEffectsPackConfiguration, Object)
Tipo evento
TypedEventHandler<AudioEffectsPackConfiguration,IInspectable>