CoreTextEditContext.TextUpdating 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于文字輸入伺服器需要修改文字輸入控制項內的文字時。 這個事件可能是索引鍵事件的結果,例如插入單一字元,或輸入處理器所完成的處理結果,例如自動校正和預測。
處理事件時,文字輸入控制項必須將範圍取代為伺服器所提供的新文字,並將插入號移到新文字的結尾。
// Register
event_token TextUpdating(TypedEventHandler<CoreTextEditContext, CoreTextTextUpdatingEventArgs const&> const& handler) const;
// Revoke with event_token
void TextUpdating(event_token const* cookie) const;
// Revoke with event_revoker
CoreTextEditContext::TextUpdating_revoker TextUpdating(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextTextUpdatingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextTextUpdatingEventArgs> TextUpdating;
function onTextUpdating(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("textupdating", onTextUpdating);
coreTextEditContext.removeEventListener("textupdating", onTextUpdating);
- or -
coreTextEditContext.ontextupdating = onTextUpdating;
Public Custom Event TextUpdating As TypedEventHandler(Of CoreTextEditContext, CoreTextTextUpdatingEventArgs)