RichEditBox.TextCompositionChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Input メソッド エディター (IME) で構成されているテキストが変更されたときに発生します。
// Register
event_token TextCompositionChanged(TypedEventHandler<RichEditBox, TextCompositionChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void TextCompositionChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::TextCompositionChanged_revoker TextCompositionChanged(auto_revoke_t, TypedEventHandler<RichEditBox, TextCompositionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RichEditBox,TextCompositionChangedEventArgs> TextCompositionChanged;
function onTextCompositionChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("textcompositionchanged", onTextCompositionChanged);
richEditBox.removeEventListener("textcompositionchanged", onTextCompositionChanged);
- or -
richEditBox.ontextcompositionchanged = onTextCompositionChanged;
Public Custom Event TextCompositionChanged As TypedEventHandler(Of RichEditBox, TextCompositionChangedEventArgs)
<RichEditBox TextCompositionChanged="eventhandler"/>
イベントの種類
注釈
イベント データについては、「 TextCompositionChangedEventArgs」を参照してください。
このイベントは、Input メソッド エディター (IME) を使用してテキストが構成されている場合にのみ発生します。 テキスト合成イベントは、次の順序で発生します。
- TextCompositionStarted
- TextChanging
- TextChanged
- TextCompositionChanged
- TextCompositionEnded
TextCompositionStarted イベントの後、TextCompositionEnded イベントが発生する前に TextChanging>TextChanged>TextCompositionChanged イベント サイクルが複数回発生する可能性があります。