WheelEvent class abstract

Implemented types

Constructors

WheelEvent()

Properties

altKey bool
no setterinherited
bubbles bool
Whether the event bubbles up through the DOM.
no setterinherited
button int
no setterinherited
buttons int
no setterinherited
cancelable bool
Whether the event can be cancelled.
no setterinherited
clientX double
no setterinherited
clientY double
no setterinherited
ctrlKey bool
no setterinherited
currentTarget EventTarget?
The target whose event listener is currently being invoked.
no setterinherited
deltaMode int
no setter
deltaX double
no setter
deltaY double
no setter
deltaZ double
no setter
hashCode int
The hash code for this object.
no setterinherited
metaKey bool
no setterinherited
pageX double
no setterinherited
pageY double
no setterinherited
raw → dynamic
The underlying platform object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
screenX double
no setterinherited
screenY double
no setterinherited
shiftKey bool
no setterinherited
target EventTarget?
The target to which the event was dispatched.
no setterinherited
type String
The type of the event (e.g., 'click', 'input').
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
preventDefault() → void
Cancels the event's default action.
inherited
stopImmediatePropagation() → void
Stops propagation and prevents other listeners on the same target.
inherited
stopPropagation() → void
Stops further propagation of the event.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

DOM_DELTA_LINE → const int
DOM_DELTA_PAGE → const int
DOM_DELTA_PIXEL → const int