Painting in Applet
We can perform painting operation in applet by the mouseDragged() method of MouseMotionListener. |
Example of Painting in Applet:
In the above example, getX() and getY() method of MouseEvent is used to get the current x-axis and y-axis. The getGraphics() method of Component class returns the object of Graphics. |
myapplet.html
download this example.