ContextMenuButtonType enum
The buttons that can appear in a context menu by default.
See also:
- ContextMenuButtonItem, which uses this enum to describe a button in a context menu.
Constructors
- ContextMenuButtonType()
-
const
Values
- cut → const ContextMenuButtonType
-
A button that cuts the current text selection.
- copy → const ContextMenuButtonType
-
A button that copies the current text selection.
- paste → const ContextMenuButtonType
-
A button that pastes the clipboard contents into the focused text field.
- selectAll → const ContextMenuButtonType
-
A button that selects all the contents of the focused text field.
- delete → const ContextMenuButtonType
-
A button that deletes the current text selection.
- custom → const ContextMenuButtonType
-
Anything other than the default button types.
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<
ContextMenuButtonType> -
A constant List of the values in this enum, in order of their declaration.
[cut, copy, paste, selectAll, delete, custom]