SelectionModes enum

Creating an enum called SelectionModes with four values: single, multiple, copy, and mirror.

Inheritance

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

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

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]