WinEvent enum

Represents constants in WinUser.h

Inheritance
Available extensions

Values

select → const WinEvent

0x0400 equivalent to onTap

contextMenu → const WinEvent

0x007b equivalent to onSecondaryTap

https://docs.microsoft.com/en-us/windows/win32/menurc/wm-contextmenu

mouseMove → const WinEvent

0x0200

leftButtonDown → const WinEvent

0x0201 equivalent to onTapDown

leftButtonUp → const WinEvent

0x0202 equivalent to onTapUp

leftButtonDoubleClick → const WinEvent

0x0203 equivalent to onDoubleTap

rightButtonDown → const WinEvent

0x0204 equivalent to onSecondaryTapDown

rightButtonUp → const WinEvent

0x0205 equivalent to onSecondaryTapUp

rightButtonDoubleClick → const WinEvent

0x0206

middleButtonDown → const WinEvent

0x0207 equivalent to onTertiaryTapDown

middleButtonUp → const WinEvent

0x0208 equivalent to onTertiaryTapUp

middleButtonDoubleClick → const WinEvent

0x0209

Properties

code int

Available on WinEvent, provided by the EventCodes extension

The internal constant used by Windows.
no setter
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
inverted WinEvent

Available on WinEvent, provided by the EventCodes extension

Get the opposite event (left = right, right = left)
no setter
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

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<WinEvent>
A constant List of the values in this enum, in order of their declaration.