LButtonUp Event
Occurs when the left mouse button is released.
The following child objects are attached to the Event object.
| Type | Name | Description |
|---|---|---|
| Number | ShiftKey | 1 if the Shift key is pressed, 0 otherwise |
| Number | CtrlKeyKey | 1 if the Ctrl key is pressed, 0 otherwise |
| Number | AltKey | 1 if the Alt key is pressed, 0 otherwise |
| Number | xPos | X coordinate of mouse pointer |
| Number | yPos | Y coordinate of mouse pointer |
Added since Ver.4.1.0
Not supported in Mobile, AI
Example of use
Function OnLButtonUp (e) {
MessageBox (strf ("(% 1,% 2) released mouse left button ", e.xPos, e.yPos));
}