CharacterMappingOptions Enumeration
Character Mapping Options describe an individual text transformation operation that can be performed on a string value. This enumeration is normally used in a flags property so that multiple transformations can be specified at once.
Enumeration Values
| Name | Summary |
|---|---|
| None | Specifies that no transformations should be performed. |
| Lowercase | Specifies that all characters in the string should be converted to the lower case. |
| Uppercase | Specifies that all characters in the string should be converted to the upper case. |
| ByteReversal | Specifies that the byte order of each character representation should be reversed. |
| FullWidth | Specifies that full-width character encodings should be converted to the equivalent half-width character encodings. |
| HalfWidth | Specifies that half-width character encodings should be converted to the equivalent full-width character encodings. |
| Hiragana | Specifies that katakana characters should be converted to the equivalent hiragana characters. |
| Katakana | Specifies that hiragana characters should be converted to the equivalent katakana characters. |
| LinguisticCasing | Specifies that all characters in the string should be converted to linguistic casing, which is a Win32 API for Unicode case mapping of Turkic and other locales. |
| SimplifiedChinese | Specifies that traditional Chinese characters should be converted to the equivalent simplified Chinese characters. |
| TraditionalChinese | Specifies that simplified Chinese characters should be converted to the equivalent traditional Chinese characters. |