CoreTextEditContext.CompositionStarted Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при запуске композиции.
// 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)