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