FormListControl.mouseUp Method [AX 2012]
Identifies when a user presses the left mouse button.
public int mouseUp(
int x,
int y,
int button,
boolean Ctrl,
boolean Shift)
Run On
ClientParameters
- x
- Type: int
The x-coordinate of the mouse pointer. The coordinate is relative to the upper-left corner of the control.
- y
- Type: int
The y-coordinate of the mouse pointer. The coordinate is relative to the upper-left corner of the control.
- button
- Type: int
An integer value: 1 if the left mouse button is down, 2 if the middle mouse button is down, or 3 if the right mouse button is down.
- Ctrl
- Type: boolean
A Boolean value that indicates whether the CTRL key is down.
- Shift
- Type: boolean
A Boolean value that indicates whether the SHIFT key is down.
To override this method in a form list control, right-click the Methods node below the control, point to Override Method, and then click mouseUp.
For information about best practices for forms and code, see No Code in Forms.
Community Additions
ADD
Show: