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