CoreTextEditContext.NotifyFocusLeaveCompleted Event

Definition

Occurs after focus has left the text input control.

// Register
event_token NotifyFocusLeaveCompleted(TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;

// Revoke with event_token
void NotifyFocusLeaveCompleted(event_token const* cookie) const;

// Revoke with event_revoker
CoreTextEditContext::NotifyFocusLeaveCompleted_revoker NotifyFocusLeaveCompleted(auto_revoke_t, TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,object> NotifyFocusLeaveCompleted;
function onNotifyFocusLeaveCompleted(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("notifyfocusleavecompleted", onNotifyFocusLeaveCompleted);
coreTextEditContext.removeEventListener("notifyfocusleavecompleted", onNotifyFocusLeaveCompleted);
- or -
coreTextEditContext.onnotifyfocusleavecompleted = onNotifyFocusLeaveCompleted;
Public Custom Event NotifyFocusLeaveCompleted As TypedEventHandler(Of CoreTextEditContext, Object) 

Event Type

Windows requirements

Device family
Windows 10 (introduced in 10.0.10586.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v2.0)

Applies to