WheelEvent class - dart:html library (original) (raw)

Inheritance

Annotations

Constructors

WheelEvent(String type, {Window? view, num deltaX = 0, num deltaY = 0, num deltaZ = 0, int deltaMode = 0, int detail = 0, int screenX = 0, int screenY = 0, int clientX = 0, int clientY = 0, int button = 0, bool canBubble = true, bool cancelable = true, bool ctrlKey = false, bool altKey = false, bool shiftKey = false, bool metaKey = false, })

factory

Properties

altKeybool

no setterinherited

bubblesbool?

no setterinherited

buttonint

no setterinherited

buttonsint?

no setterinherited

cancelablebool?

no setterinherited

clientPoint<num>

no setterinherited

composedbool?

no setterinherited

ctrlKeybool

no setterinherited

currentTargetEventTarget?

no setterinherited

dataTransferDataTransfer

no setterinherited

defaultPreventedbool

no setterinherited

deltaModeint

no setter

deltaXnum

The amount that is expected to scroll horizontally, in units determined bydeltaMode.

no setter

deltaYnum

The amount that is expected to scroll vertically, in units determined bydeltaMode.

no setter

deltaZnum?

no setter

detailint?

no setterinherited

eventPhaseint

no setterinherited

fromElementNode?

The nonstandard way to access the element that the mouse comes from in the case of a mouseover event.

no setterinherited

hashCodeint

The hash code for this object.

no setterinherited

isTrustedbool?

no setterinherited

layerPoint<num>

no setterinherited

matchingTargetElement

A pointer to the element whose CSS selector matched within which an event was fired. If this Event was not associated with any Event delegation, accessing this value will throw an UnsupportedError.

no setterinherited

metaKeybool

no setterinherited

movementPoint<num>

no setterinherited

offsetPoint<num>

The coordinates of the mouse pointer in target node coordinates.

no setterinherited

pagePoint<num>

no setterinherited

pathList<EventTarget>

no setterinherited

regionString?

no setterinherited

no setterinherited

runtimeTypeType

A representation of the runtime type of the object.

no setterinherited

screenPoint<num>

no setterinherited

shiftKeybool

no setterinherited

sourceCapabilitiesInputDeviceCapabilities?

no setterinherited

targetEventTarget?

no setterinherited

timeStampnum?

no setterinherited

toElementNode?

The nonstandard way to access the element that the mouse goes to in the case of a mouseout event.

no setterinherited

typeString

no setterinherited

viewWindowBase?

no setterinherited

Methods

composedPath()→ List<EventTarget>

inherited

getModifierState(String keyArg)→ bool

inherited

noSuchMethod(Invocation invocation)→ dynamic

Invoked when a nonexistent method or property is accessed.

inherited

preventDefault()→ void

inherited

stopImmediatePropagation()→ void

inherited

stopPropagation()→ void

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