Beispiel #1
0
 /// <summary>
 ///     Moves the cursor instantly to a given x,y.
 /// </summary>
 public FluentInvoker AbsoluteMove(Point aDestination)
 {
     MouseController.AbsoluteMove(aDestination);
     return(this);
 }
 /// <summary>
 ///     Moves the cursor instantly to a given x,y.
 /// </summary>
 public void AbsoluteMove(int x, int y)
 {
     controller.AbsoluteMove(tr(x, y));
 }
Beispiel #3
0
 /// <summary>
 ///     Moves the cursor instantly to a given x,y.
 /// </summary>
 public FluentInvoker AbsoluteMove(int x, int y)
 {
     MouseController.AbsoluteMove(x, y);
     return(this);
 }