Java com.google.gwt.event.dom.client MouseWheelEvent fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.event.dom.client MouseWheelEvent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.event.dom.client MouseWheelEvent.

The text is from its open source code.

Method

intgetDeltaY()
Get the change in the mouse wheel position along the Y-axis; positive if the mouse wheel is moving north (toward the top of the screen) or negative if the mouse wheel is moving south (toward the bottom of the screen).
TypegetType()
Gets the event type associated with mouse wheel events.
booleanisNorth()
Convenience method that returns true if #getDeltaY() is a negative value (ie, the velocity is directed toward the top of the screen).
booleanisSouth()
Convenience method that returns true if #getDeltaY() is a positive value (ie, the velocity is directed toward the bottom of the screen).