Package com.teamdev.jxbrowser.dom.event
Interface WheelEvent
- All Superinterfaces:
Event
,Event
,MouseEvent
,UiEventModifier
A wheel event that provides access to the wheel event data.
This event occurs when a user rotates a wheel on a pointing device (such as a mouse).
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
Represents the type of the delta units.Nested classes/interfaces inherited from interface com.teamdev.jxbrowser.dom.event.MouseEvent
MouseEvent.Button
-
Method Summary
Methods inherited from interface com.teamdev.jxbrowser.dom.event.Event
currentTarget, isBubbles, isCancelable, isTrusted, phase, preventDefault, stopPropagation, target, type
Methods inherited from interface com.teamdev.jxbrowser.dom.event.MouseEvent
button, clickCount, clientLocation, offsetLocation, pageLocation, screenLocation
Methods inherited from interface com.teamdev.jxbrowser.dom.event.UiEventModifier
keyModifiers
-
Method Details
-
deltaX
double deltaX()Returns the amount of units to scroll horizontally. -
deltaY
double deltaY()Returns the amount of units to scroll vertically. -
deltaMode
WheelEvent.DeltaMode deltaMode()Returns the delta units type.
-