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.
@param typeArg Specifies the event type.
@param canBubbleArg Specifies whether or not the event can bubble.
@param cancelableArg Specifies whether or not the event's defaultaction can be prevented.
@param viewArg Specifies the Event
'sAbstractView
.
@param detailArg Specifies the Event
's mouse click count.
@param screenXArg Specifies the Event
's screen xcoordinate
@param screenYArg Specifies the Event
's screen ycoordinate
@param clientXArg Specifies the Event
's client xcoordinate
@param clientYArg Specifies the Event
's client ycoordinate
@param ctrlKeyArg Specifies whether or not control key was depressedduring the Event
.
@param altKeyArg Specifies whether or not alt key was depressed duringthe Event
.
@param shiftKeyArg Specifies whether or not shift key was depressedduring the Event
.
@param metaKeyArg Specifies whether or not meta key was depressedduring the Event
.
@param buttonArg Specifies the Event
's mouse button.
@param relatedTargetArg Specifies the Event
's relatedEventTarget
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|