LockScreenInfo.DetailTextChanged 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.
Indicates the detail text has changed.
// Register
event_token DetailTextChanged(TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
// Revoke with event_token
void DetailTextChanged(event_token const* cookie) const;
// Revoke with event_revoker
LockScreenInfo::DetailTextChanged_revoker DetailTextChanged(auto_revoke_t, TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
public event TypedEventHandler<LockScreenInfo,object> DetailTextChanged;
function onDetailTextChanged(eventArgs) { /* Your code */ }
lockScreenInfo.addEventListener("detailtextchanged", onDetailTextChanged);
lockScreenInfo.removeEventListener("detailtextchanged", onDetailTextChanged);
- or -
lockScreenInfo.ondetailtextchanged = onDetailTextChanged;
Public Custom Event DetailTextChanged As TypedEventHandler(Of LockScreenInfo, Object)
Event Type
TypedEventHandler<LockScreenInfo,IInspectable>