Create a new PointerWheel.
Readonly
altIs alt being pressed?
Readonly
ctrlIs control being pressed?
Readonly
deltaThe mode of the delta values; how the delta values should be interpreted. See PointerWheelMode
Readonly
deltaXWheel event horizontal scroll amount. Not an integer. The value's interpretation depends on deltaMode.
Readonly
deltaYWheel event vertical scroll amount. Not an integer. The value's interpretation depends on deltaMode.
Readonly
deltaZWheel event depth scroll amount. Not an integer. The value's interpretation depends on deltaMode.
Readonly
focusThe focus type of this event. Can be null.
If null, this event cannot be focused, since events are focused by their FocusType as a group.
Readonly
fromWas this wheel event created from a pointer drag?
Readonly
needsCan this event be dispatched without a target?
Readonly
reversedIs this event dispatched in reverse-order?
Readonly
shiftIs shift being pressed?
Readonly
targetThe target of this event. Can be null
Readonly
xPointer event position's X coordinate in pixels. Not an integer.
Readonly
yPointer event position's Y coordinate in pixels. Not an integer.
Static
Readonly
PageThe amount of lines to remove from a page scroll
Static
Readonly
PageThe percentage of a page to remove from a page scroll
Create a new Event with the same properties as this, except with a new given target.
Create a new PointerEvent event with the same properties as this, except with new x and y values corrected for a given offset.
Get the scroll delta in pixels, even if the deltaMode is not Pixel.
Returns a 3-tuple containing the x, y and z components, repectively, of the wheel event in pixels.
Should the delta be limited by PageLinesError and PagePercentError, if deltaMode is not Page?
The full height (line height with spacing) of a line, used for page deltaMode, or for limiting the delta
The width of the container, used for page deltaMode, or for limiting the delta
The height of the container, used for page deltaMode, or for limiting the delta
The depth of the container, used for page deltaMode, or for limiting the delta. Only used for custom containers/widgets with a Z-axis
Generated using TypeDoc
A pointer wheel PointerEvent.
Has a focus type of Pointer and does not need focus.