CoreTextEditContext.CompositionCompleted Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит после завершения композиции.
// Register
event_token CompositionCompleted(TypedEventHandler<CoreTextEditContext, CoreTextCompositionCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void CompositionCompleted(event_token const* cookie) const;
// Revoke with event_revoker
CoreTextEditContext::CompositionCompleted_revoker CompositionCompleted(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextCompositionCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextCompositionCompletedEventArgs> CompositionCompleted;
function onCompositionCompleted(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("compositioncompleted", onCompositionCompleted);
coreTextEditContext.removeEventListener("compositioncompleted", onCompositionCompleted);
- or -
coreTextEditContext.oncompositioncompleted = onCompositionCompleted;
Public Custom Event CompositionCompleted As TypedEventHandler(Of CoreTextEditContext, CoreTextCompositionCompletedEventArgs)