:: com :: sun :: star :: awt ::

struct MouseEvent
Base Hierarchy
::com::sun::star::lang::EventObject
 |
 +-InputEvent
    |
    +-MouseEvent
Description
specifies an event from the mouse.
See also
InputEvent

Elements' Summary
Buttons contains the pressed mouse buttons.
X contains the x coordinate location of the mouse.
Y contains the y coordinate location of the mouse.
ClickCount contains the number of mouse clicks associated with event.
PopupTrigger specifies if this event is a popup-menu trigger event.
Elements' Details
Buttons
short Buttons;
Description
contains the pressed mouse buttons.

Zero ore more constants from the MouseButton group.

X
long X;
Description
contains the x coordinate location of the mouse.
Y
long Y;
Description
contains the y coordinate location of the mouse.
ClickCount
long ClickCount;
Description
contains the number of mouse clicks associated with event.
PopupTrigger
boolean PopupTrigger;
Description
specifies if this event is a popup-menu trigger event.
Top of Page