Description: | This event is raised when the user releases the mouse button over the control. |
Syntax: | MouseUp(Button
As Integer, Shift As Integer, X As Single, Y As Single)Remarks:
Button - Returns an integer value that corresponds to a button on the mouse Value Description 1 Left button is pressed. Shift- Returns an integer value that corresponds to a control key press Value Description 1 - SHIFT key is pressed. |
Description: | This event is raised when the user presses the mouse button over the control. |
Syntax: | MouseDown(Button
As Integer, Shift As Integer, X As Single, Y As Single)Remarks:
Button - Returns an integer value that corresponds to a button on the mouse Value Description 1 Left button is pressed. Shift- Returns an integer value that corresponds to a control key press Value Description 1 - SHIFT key is pressed. |
Mouse Move Event | |
Description: | This event is raised when the user moves the mouse over the control. |
Syntax: | MouseMove(Button
As Integer, Shift As Integer, X As Single, Y As Single)Remarks:
Button - Returns an integer value that corresponds to a button on the mouse Value Description 1 Left button is pressed. Shift- Returns an integer value that corresponds to a control key press Value Description 1 - SHIFT key is pressed. |
Description: | This event is raised when the user clicks the control with the mouse button. |
Syntax: | MouseClick() |