UISettings.MessageDurationChanged 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 value of the MessageDuration property has changed.
// Register
event_token MessageDurationChanged(TypedEventHandler<UISettings, UISettingsMessageDurationChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void MessageDurationChanged(event_token const* cookie) const;
// Revoke with event_revoker
UISettings::MessageDurationChanged_revoker MessageDurationChanged(auto_revoke_t, TypedEventHandler<UISettings, UISettingsMessageDurationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UISettings,UISettingsMessageDurationChangedEventArgs> MessageDurationChanged;
function onMessageDurationChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("messagedurationchanged", onMessageDurationChanged);
uISettings.removeEventListener("messagedurationchanged", onMessageDurationChanged);
- or -
uISettings.onmessagedurationchanged = onMessageDurationChanged;
Public Custom Event MessageDurationChanged As TypedEventHandler(Of UISettings, UISettingsMessageDurationChangedEventArgs)
Event Type
Windows requirements
Device family |
Windows 10, version 2004 (introduced in 10.0.19041.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v10.0)
|