KeyboardFlags Enum

Definition

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
KeyboardFlags
Attributes

Fields

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.

CapitalizeCharacter 16

Indicates that every character will be automatically capitalized.

CapitalizeNone 32

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.

CapitalizeWord 8

Indicates that the first letter of each word will be automatically capitalized.

None 0

Indicates that nothing 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.

Applies to