WindowsOrientation enum

For display devices only, the orientation at which images should be presented in Windows.

For more information, see the DEVMODE documentation.

Inheritance
Available extensions

Values

DMDO_DEFAULT → const WindowsOrientation

The display orientation is the natural orientation of the display device. It should be used as the default.

const WindowsOrientation(0)
DMDO_90 → const WindowsOrientation

The display orientation is rotated 90 degrees (measured clockwise) from DMDO_DEFAULT.

const WindowsOrientation(1)
DMDO_180 → const WindowsOrientation

The display orientation is rotated 180 degrees (measured clockwise) from DMDO_DEFAULT.

const WindowsOrientation(2)
DMDO_270 → const WindowsOrientation

The display orientation is rotated 270 degrees (measured clockwise) from DMDO_DEFAULT.

const WindowsOrientation(3)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
dmDisplayOrientation value from Windows.
final

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

Static Methods

parse(int value) WindowsOrientation
Parse dmDisplayOrientation value to WindowsOrientation.

Constants

values → const List<WindowsOrientation>
A constant List of the values in this enum, in order of their declaration.