Share via


LockScreenInfo.DetailTextChanged Event

Definition

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

Applies to