Enum VirtualKeyboardFlags
Enumerates virtual keyboard option flags that controls capitalization, spellcheck, suggestion and other behavior. This enumeration supports a bitwise combination of its member values.
[Flags]
public enum VirtualKeyboardFlags
Fields
All = -1Capitalizes the first letter of the first words of sentences, performs spellcheck, and offers suggested word completions on text that the user enters.
CapitalizeCharacter = 16Every character is automatically capitalized.
CapitalizeNone = 32No automatical capitalization is done.
CapitalizeSentence = 1The first letters of the first words of each sentence are automatically capitalized.
CapitalizeWord = 8The first letter of each word is automatically capitalized.
None = 0Indicates that no automatical capitalization or spellcheck is done.
Spellcheck = 2Performs spellcheck on text that the user enters.
Suggestions = 4Offers suggested word completions on text that the user enters.