/// <summary> Performs a right click at the given coordinates. </summary> public static void PerformRightClick(int x, int y) { InternalHelpers.SetCursorPosition(x, y); InternalHelpers.DoRightClick(); }
/// <summary> Performs a right mouse up in the cursor's current position. </summary> public static void PerformRightMouseUp() { InternalHelpers.DoRightMouseUp(); }
/// <summary> Performs a right click in the cursor's current position. </summary> public static void PerformRightClick() { InternalHelpers.DoRightClick(); }
/// <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(); }
/// <summary> Performs a left click in the cursor's current position. </summary> public static void PerformLeftClick() { InternalHelpers.DoLeftClick(); }
/// <summary> Teleports the cursor to the given coordinates. </summary> public static void SetCursorPosition(int x, int y) { InternalHelpers.SetCursorPosition(x, y); }
/// <summary> Performs a left mouse up in the cursor's current position. </summary> public static void PerformLeftMouseUp() { InternalHelpers.DoLeftMouseUp(); }
/// <summary> Scrolls the mouse wheel down by the given ticks. </summary> public static void ScrollMouseWheelDown(int ticks) { InternalHelpers.Scroll(-ticks); }
/// <summary> Scrolls the mouse wheel up by the given ticks. </summary> public static void ScrollMouseWheelUp(int ticks) { InternalHelpers.Scroll(ticks); }
/// <summary> Performs a middle click in the cursor's current position. </summary> public static void PerformMiddleClick() { InternalHelpers.DoMiddleClick(); }
/// <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(); }
/// <summary> Performs a middle mouse up in the cursor's current position. </summary> public static void PerformMiddleMouseUp() { InternalHelpers.DoMiddleMouseUp(); }