mouse class : Move(int,int) method
Description
Sets the cursor's position.
Syntax
mouseInstance.Move(int x, int y)
Arguments
Class | Name | Description |
int | x | x-coordinate of the moving position. |
int | y | y-coordinate of the moving position. |
Return value
None.
Sample code
1: | mouse m = new mouse(); |
2: | m.Move(100, 100); |
Notes
Arguments are the screen coordinates.
The unit is physical pixels.