Class MouseWheelEvent

    • Method Detail

      • getType

        public static DomEvent.Type<MouseWheelHandler> getType()
        Gets the event type associated with mouse wheel events.
        Returns:
        the handler type
      • getDeltaY

        public int getDeltaY()
        Get the change in the mouse wheel position along the Y-axis; negative if the mouse wheel is moving north (toward the top of the screen) or positive if the mouse wheel is moving south (toward the bottom of the screen). Note that delta values are not normalized across browsers or OSes.
        Returns:
        the delta of the mouse wheel along the y axis
      • isNorth

        public boolean isNorth()
        Convenience method that returns true if getDeltaY() is a negative value (ie, the velocity is directed toward the top of the screen).
        Returns:
        true if the velocity is directed toward the top of the screen
      • isSouth

        public boolean isSouth()
        Convenience method that returns true if getDeltaY() is a positive value (ie, the velocity is directed toward the bottom of the screen).
        Returns:
        true if the velocity is directed toward the bottom of the screen