mouse class : ClickLeft(int) method
Description
Simulates clicks of the left mouse button.
Syntax
mouseInstance.ClickLeft(int times)
Arguments
Class | Name | Description |
int | times | Times of click. |
Return value
None.
Sample code
1: | mouse m = new mouse(); |
2: | m.ClickLeft(2); // Double click. |
Notes
If the argument is 0 or less, nothing occur.
Links for reference
None.