Beispiel #1
0
 /// <summary> Performs a right click at the given coordinates. </summary>
 public static void PerformRightClick(int x, int y)
 {
     InternalHelpers.SetCursorPosition(x, y);
     InternalHelpers.DoRightClick();
 }
Beispiel #2
0
 /// <summary> Performs a right mouse up in the cursor's current position. </summary>
 public static void PerformRightMouseUp()
 {
     InternalHelpers.DoRightMouseUp();
 }
Beispiel #3
0
 /// <summary> Performs a right click in the cursor's current position. </summary>
 public static void PerformRightClick()
 {
     InternalHelpers.DoRightClick();
 }
Beispiel #4
0
 /// <summary> Performs a left mouse up  at the given coordinates. </summary>
 public static void PerformLeftMouseUp(int x, int y)
 {
     InternalHelpers.SetCursorPosition(x, y);
     InternalHelpers.DoLeftMouseUp();
 }
Beispiel #5
0
 /// <summary> Performs a left click in the cursor's current position. </summary>
 public static void PerformLeftClick()
 {
     InternalHelpers.DoLeftClick();
 }
Beispiel #6
0
 /// <summary> Teleports the cursor to the given coordinates. </summary>
 public static void SetCursorPosition(int x, int y)
 {
     InternalHelpers.SetCursorPosition(x, y);
 }
Beispiel #7
0
 /// <summary> Performs a left mouse up in the cursor's current position. </summary>
 public static void PerformLeftMouseUp()
 {
     InternalHelpers.DoLeftMouseUp();
 }
Beispiel #8
0
 /// <summary> Scrolls the mouse wheel down by the given ticks. </summary>
 public static void ScrollMouseWheelDown(int ticks)
 {
     InternalHelpers.Scroll(-ticks);
 }
Beispiel #9
0
 /// <summary> Scrolls the mouse wheel up by the given ticks. </summary>
 public static void ScrollMouseWheelUp(int ticks)
 {
     InternalHelpers.Scroll(ticks);
 }
Beispiel #10
0
 /// <summary> Performs a middle click in the cursor's current position. </summary>
 public static void PerformMiddleClick()
 {
     InternalHelpers.DoMiddleClick();
 }
Beispiel #11
0
 /// <summary> Performs a middle mouse down  at the given coordinates. </summary>
 public static void PerformMiddleMouseDown(int x, int y)
 {
     InternalHelpers.SetCursorPosition(x, y);
     InternalHelpers.DoMiddleMouseDown();
 }
Beispiel #12
0
 /// <summary> Performs a middle mouse up in the cursor's current position. </summary>
 public static void PerformMiddleMouseUp()
 {
     InternalHelpers.DoMiddleMouseUp();
 }