AWT MouseMotionEvent Class

  • Post author:
  • Post category:AWT
  • Post comments:0 Comments
MouseMotionEvent class 

Introduction

The interface MouseMotionEvent class indicates a mouse action occurred in a component. This low-level event is generated by a component object when the mouse is dragged or moved.

Class declaration

Following is the declaration for java.awt.event.MouseMotionEvent Class:

public class MouseMotionEvent
   extends InputEvent

Interface methods

S.N.Method & Description
1void mouseDragged(MouseEvent e)Invoked when a mouse button is pressed on a component and then dragged.
2void mouseMoved(MouseEvent e)Invoked when the mouse cursor has been moved onto a component but no buttons have been pushed.

Methods inherited

This interface inherits methods from the following classes:

  • java.awt.event.InputEvent
  • java.awt.event.ComponentEvent
  • java.awt.AWTEvent
  • java.util.EventObject
  • java.lang.Object

Previous Page:-Click Here

Leave a Reply