TextCompositionChangedEventArgs
TextCompositionChangedEventArgs
TextCompositionChangedEventArgs
TextCompositionChangedEventArgs
Class
Definition
Provides event data for the TextCompositionChanged event on TextBox and RichEditBox.
public : sealed class TextCompositionChangedEventArgs : ITextCompositionChangedEventArgspublic sealed class TextCompositionChangedEventArgs : ITextCompositionChangedEventArgsPublic NotInheritable Class TextCompositionChangedEventArgs Implements ITextCompositionChangedEventArgs// 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.TextCompositionChanged and RichEditBox.TextCompositionChanged 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