TextEditChangeType enumeration
Describes the text editing change being performed by controls when text-edit events are raised or handled.
Syntax
enum TextEditChangeType {
TextEditChangeType_None = 0,
TextEditChangeType_AutoCorrect = 1,
TextEditChangeType_Composition = 2,
TextEditChangeType_CompositionFinalized = 3
};
Constants
- TextEditChangeType_None
-
Not related to a specific change type.
- TextEditChangeType_AutoCorrect
-
Change is from an auto-correct action performed by a control.
- TextEditChangeType_Composition
-
Change is from an IME active composition within a control.
- TextEditChangeType_CompositionFinalized
-
Change is from an IME composition going from active to finalized state within a control.
Note The finalized string may be empty if composition was canceled or deleted.
Requirements
|
Minimum supported client |
Windows 8.1 [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2012 R2 [desktop apps only] |
|
Header |
|
See also