TextCompositionEndedEventArgs TextCompositionEndedEventArgs TextCompositionEndedEventArgs TextCompositionEndedEventArgs Class

Definition

Provides event data for the TextCompositionEnded event on TextBox and RichEditBox.

public : sealed class TextCompositionEndedEventArgs : ITextCompositionEndedEventArgspublic sealed class TextCompositionEndedEventArgs : ITextCompositionEndedEventArgsPublic NotInheritable Class TextCompositionEndedEventArgs Implements ITextCompositionEndedEventArgs// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Remarks

For more info, see the TextBox.TextCompositionEnded and RichEditBox.TextCompositionEnded events.

Properties

Length Length Length Length

Gets the length of the portion of the text that the user is composing with an Input Method Editor (IME).

public : int Length { get; }public int Length { get; }Public ReadOnly Property Length As int// This API is not available in Javascript.
Value
int int int int

The length of the portion of the text that the user is composing with an Input Method Editor (IME).

See Also

StartIndex StartIndex StartIndex StartIndex

Gets the starting location of the text that the user is composing with an Input Method Editor (IME).

public : int StartIndex { get; }public int StartIndex { get; }Public ReadOnly Property StartIndex As int// This API is not available in Javascript.
Value
int int int int

The starting location of the text that the user is composing with an Input Method Editor (IME).

See Also

See Also