DoubleClicked Event
Occurs when the left mouse button is double-clicked.
The following child objects are attached to the Event object.
| Type | Name | Description |
|---|---|---|
| Number | ShiftKey | 1 if the Shift key is clicked, 0 otherwise |
| Number | CtrlKey | 1 if the Ctrl key is clicked, 0 otherwise |
| Number | AltKey | 1 if the Alt key is clicked, 0 otherwise |
| Number | xPos | X coordinate of mouse pointer |
| Number | yPos | Y coordinate of mouse pointer |
Usage Example
Function OnDoubleClicked(e) {
MessageBox(strf("(%1,%2)でダブルクリックされました", e.xPos, e.yPos));
}