| 
 | Préférences Moteurs de recherche | ||||||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.5.0 
org.w3c.dom.events
 | |||||||||||||||||||||||||||||||||
| Field Summary | 
|---|
| Fields inherited from interface org.w3c.dom.events.Event | 
|---|
| AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE | 
| Method Summary | |
|---|---|
|  boolean | getAltKey()Used to indicate whether the 'alt' key was depressed during the firing of the event. | 
|  short | getButton()During mouse events caused by the depression or release of a mouse button, buttonis used to indicate which mouse button 
 changed state. | 
|  int | getClientX()The horizontal coordinate at which the event occurred relative to the DOM implementation's client area. | 
|  int | getClientY()The vertical coordinate at which the event occurred relative to the DOM implementation's client area. | 
|  boolean | getCtrlKey()Used to indicate whether the 'ctrl' key was depressed during the firing of the event. | 
|  boolean | getMetaKey()Used to indicate whether the 'meta' key was depressed during the firing of the event. | 
|  EventTarget | getRelatedTarget()Used to identify a secondary EventTargetrelated to a UI 
 event. | 
|  int | getScreenX()The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system. | 
|  int | getScreenY()The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system. | 
|  boolean | getShiftKey()Used to indicate whether the 'shift' key was depressed during the firing of the event. | 
|  void | initMouseEvent(String typeArg,
               boolean canBubbleArg,
               boolean cancelableArg,
               org.w3c.dom.views.AbstractView viewArg,
               int detailArg,
               int screenXArg,
               int screenYArg,
               int clientXArg,
               int clientYArg,
               boolean ctrlKeyArg,
               boolean altKeyArg,
               boolean shiftKeyArg,
               boolean metaKeyArg,
               short buttonArg,
               EventTarget relatedTargetArg)The initMouseEventmethod is used to initialize the value 
 of aMouseEventcreated through theDocumentEventinterface. | 
| Methods inherited from interface org.w3c.dom.events.UIEvent | 
|---|
| getDetail, getView, initUIEvent | 
| Methods inherited from interface org.w3c.dom.events.Event | 
|---|
| getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation | 
| Method Detail | 
|---|
int getScreenX()
int getScreenY()
int getClientX()
int getClientY()
boolean getCtrlKey()
boolean getShiftKey()
boolean getAltKey()
boolean getMetaKey()
short getButton()
button is used to indicate which mouse button 
 changed state. The values for button range from zero to 
 indicate the left button of the mouse, one to indicate the middle 
 button if present, and two to indicate the right button. For mice 
 configured for left handed use in which the button actions are 
 reversed the values are instead read from right to left.
EventTarget getRelatedTarget()
EventTarget related to a UI 
 event. Currently this attribute is used with the mouseover event to 
 indicate the EventTarget which the pointing device 
 exited and with the mouseout event to indicate the 
 EventTarget which the pointing device entered.
void initMouseEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, EventTarget relatedTargetArg)
initMouseEvent method is used to initialize the value 
 of a MouseEvent created through the 
 DocumentEvent interface. This method may only be called 
 before the MouseEvent has been dispatched via the 
 dispatchEvent method, though it may be called multiple 
 times during that phase if necessary. If called multiple times, the 
 final invocation takes precedence.
typeArgSpecifies - the event type.canBubbleArgSpecifies - whether or not the event can bubble.cancelableArgSpecifies - whether or not the event's default 
   action can be prevented.viewArgSpecifies - the Event's 
   AbstractView.detailArgSpecifies - the Event's mouse click count.screenXArgSpecifies - the Event's screen x coordinatescreenYArgSpecifies - the Event's screen y coordinateclientXArgSpecifies - the Event's client x coordinateclientYArgSpecifies - the Event's client y coordinatectrlKeyArgSpecifies - whether or not control key was depressed 
   during the Event.altKeyArgSpecifies - whether or not alt key was depressed during 
   the Event.shiftKeyArgSpecifies - whether or not shift key was depressed 
   during the Event.metaKeyArgSpecifies - whether or not meta key was depressed 
   during the Event.buttonArgSpecifies - the Event's mouse button.relatedTargetArgSpecifies - the Event's related 
   EventTarget.