[ type ] MouseWheelEvent
Description:
Mouse wheel event received by the onMouseWheel() handler callback.
Type: Object
Properties:
| Name | Type | Description |
|---|---|---|
|
object | The component that triggered the event. |
|
string | Always |
|
number | Button number. One of |
|
number | Number of units to scroll per wheel click. |
|
number | Number of wheel "clicks" rotated. Can be zero until a full click is accumulated on high-resolution wheels. |
|
number | Keyboard modifiers (bitmask or flags). |
|
boolean | Indicates if ALT key was pressed. |
|
boolean | Indicates if SHIFT key was pressed. |
|
boolean | Indicates if CTRL key was pressed. |
|
number | Mouse X position relative to the component. |
|
number | Mouse Y position relative to the component. |
|
number | Mouse X position relative to the screen. |
|
number | Mouse Y position relative to the screen. |
