SelectionModes enum
Creating an enum called SelectionModes with four values: single, multiple, copy, and mirror.
Constructors
- SelectionModes()
-
const
Values
- base → const SelectionModes
-
The default value.
- multiple → const SelectionModes
-
Selection mode for when it's necessary to select more button at the same time.
- repeat → const SelectionModes
-
Selection mode for when it's necessary to do the COPY command.
- mirror → const SelectionModes
-
Selection mode for when it's necessary to do the MIRROR command.
- mirrorVertical → const SelectionModes
-
Selection mode for when it's necessary to do the MIRROR VERTICAL command.
- mirrorHorizontal → const SelectionModes
-
Selection mode for when it's necessary to do the MIRROR HORIZONTAL command.
- select → const SelectionModes
-
Selection mode for when it's necessary to do select the cells.
- selectCopyCells → const SelectionModes
-
Selection mode for when it's necessary to do select the cells for copy.
- transition → const SelectionModes
-
Selection mode for transition between different states.
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<
SelectionModes> -
A constant List of the values in this enum, in order of their declaration.
[base, multiple, repeat, mirror, mirrorVertical, mirrorHorizontal, select, selectCopyCells, transition]