Example #1
0
 /// <summary> Performs a left mouse down  at the given coordinates. </summary>
 public static void PerformLeftMouseDown(int x, int y)
 {
     InternalHelpers.SetCursorPosition(x, y);
     InternalHelpers.DoLeftMouseDown();
 }
Example #2
0
 /// <summary> Performs a left mouse down in the cursor's current position. </summary>
 public static void PerformLeftMouseDown()
 {
     InternalHelpers.DoLeftMouseDown();
 }