CoreTextEditContext.CompositionStarted Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica all'avvio della composizione.
// Register
event_token CompositionStarted(TypedEventHandler<CoreTextEditContext, CoreTextCompositionStartedEventArgs const&> const& handler) const;
// Revoke with event_token
void CompositionStarted(event_token const* cookie) const;
// Revoke with event_revoker
CoreTextEditContext::CompositionStarted_revoker CompositionStarted(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextCompositionStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextCompositionStartedEventArgs> CompositionStarted;
function onCompositionStarted(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("compositionstarted", onCompositionStarted);
coreTextEditContext.removeEventListener("compositionstarted", onCompositionStarted);
- or -
coreTextEditContext.oncompositionstarted = onCompositionStarted;
Public Custom Event CompositionStarted As TypedEventHandler(Of CoreTextEditContext, CoreTextCompositionStartedEventArgs)