KeyboardFlags 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.
Enumerates keyboard option flags that controls capitalization, spellcheck, and suggestion behavior.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum KeyboardFlags
type KeyboardFlags =
- Inheritance
-
System.EnumKeyboardFlags
- Attributes
-
System.FlagsAttribute
Fields
Name | Value | Description |
---|---|---|
All | -1 | Capitalize the first letter of the first words of sentences, perform spellcheck, and offer suggested word completions on text that the user enters. |
None | 0 | Indicates that nothing will be automatically capitalized. |
CapitalizeSentence | 1 | Indicates that the first letters of the first words of each sentence will be automatically capitalized. |
Spellcheck | 2 | Perform spellcheck on text that the user enters. |
Suggestions | 4 | Offer suggested word completions on text that the user enters. |
CapitalizeWord | 8 | Indicates that the first letter of each word will be automatically capitalized. |
CapitalizeCharacter | 16 | Indicates that every character will be automatically capitalized. |
CapitalizeNone | 32 | Indicates that nothing will be automatically capitalized. |