AsciiControlKey enum
A control key on the keyboard.
Includes keys such as backspace, tab, enter, escape, and delete.
Constructors
- AsciiControlKey(int charCode)
-
const
Values
- backspace → const AsciiControlKey
-
Backspace (
'\b'
).const AsciiControlKey(0x08)
- tab → const AsciiControlKey
-
Tab (
'\t'
).const AsciiControlKey(0x09)
- enter → const AsciiControlKey
-
Enter (
'\n'
).const AsciiControlKey(0xA)
- escape → const AsciiControlKey
-
Escape (
'\x1B'
).const AsciiControlKey(0x1B)
- delete → const AsciiControlKey
-
Delete (
'\x7F'
).const AsciiControlKey(0x7F)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
AsciiControlKey> - A constant List of the values in this enum, in order of their declaration.