Table of Contents

Enum VirtualKeyboardFlags

Namespace
Alternet.UI
Assembly
Alternet.UI.Interfaces.dll

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 = -1

Capitalizes the first letter of the first words of sentences, performs spellcheck, and offers suggested word completions on text that the user enters.

CapitalizeCharacter = 16

Every character is automatically capitalized.

CapitalizeNone = 32

No automatical capitalization is done.

CapitalizeSentence = 1

The first letters of the first words of each sentence are automatically capitalized.

CapitalizeWord = 8

The first letter of each word is automatically capitalized.

None = 0

Indicates that no automatical capitalization or spellcheck is done.

Spellcheck = 2

Performs spellcheck on text that the user enters.

Suggestions = 4

Offers suggested word completions on text that the user enters.