Example usage for Java javafx.scene.input ScrollEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
EventType | ANY Common supertype for all scroll event types. |
EventType | SCROLL This event occurs when user performs a scrolling action such as rotating mouse wheel or dragging a finger over touch screen. |
void | consume() Marks this Event as consumed. |
double | getDeltaX() Gets the horizontal scroll amount. |
double | getDeltaY() Gets the vertical scroll amount. |
EventType | getEventType() |
double | getX() Gets the horizontal position of the event relative to the origin of the event's source. |
double | getY() Gets the vertical position of the event relative to the origin of the event's source. |
boolean | isDirect() Indicates whether this gesture is caused by a direct or indirect input device. |
boolean | isInertia() Indicates if this event represents an inertia of an already finished gesture. |
boolean | isShiftDown() Indicates whether or not the Shift modifier is down on this event. |