SpatialAudioDeviceConfiguration.ConfigurationChanged 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 the spatial audio state of the device has changed.
// Register
event_token ConfigurationChanged(TypedEventHandler<SpatialAudioDeviceConfiguration, IInspectable const&> const& handler) const;
// Revoke with event_token
void ConfigurationChanged(event_token const* cookie) const;
// Revoke with event_revoker
SpatialAudioDeviceConfiguration::ConfigurationChanged_revoker ConfigurationChanged(auto_revoke_t, TypedEventHandler<SpatialAudioDeviceConfiguration, IInspectable const&> const& handler) const;
public event TypedEventHandler<SpatialAudioDeviceConfiguration,object> ConfigurationChanged;
function onConfigurationChanged(eventArgs) { /* Your code */ }
spatialAudioDeviceConfiguration.addEventListener("configurationchanged", onConfigurationChanged);
spatialAudioDeviceConfiguration.removeEventListener("configurationchanged", onConfigurationChanged);
- or -
spatialAudioDeviceConfiguration.onconfigurationchanged = onConfigurationChanged;
Public Custom Event ConfigurationChanged As TypedEventHandler(Of SpatialAudioDeviceConfiguration, Object)
Event Type
TypedEventHandler<SpatialAudioDeviceConfiguration,IInspectable>