ImeConversionModeValues Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes a mode of input conversion to be performed by an input method.
This enumeration supports a bitwise combination of its member values.
public enum class ImeConversionModeValues
[System.Flags]
public enum ImeConversionModeValues
[<System.Flags>]
type ImeConversionModeValues =
Public Enum ImeConversionModeValues
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
DoNotCare | -2147483648 | The input method does not care what input conversion method is used; the actual conversion method is indeterminate. |
Native | 1 | The input method uses a native character (Hiragana, Hangul, Chinese) conversion mode. |
Katakana | 2 | The input method uses Katakana conversion mode. |
FullShape | 4 | The input method uses full-shape conversion mode. |
Roman | 8 | The input method uses Roman character conversion mode. |
CharCode | 16 | The input method uses character code conversion mode. |
NoConversion | 32 | The input method will not perform any input conversion. |
Eudc | 64 | The input method uses EUDC (end user defined character) conversion mode. |
Symbol | 128 | The input method uses symbol conversion mode. |
Fixed | 256 | The input method uses fixed conversion mode. |
Alphanumeric | 512 | The input method uses alphanumeric conversion mode. |