/// <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 down in the cursor's current position. </summary> public static void PerformMiddleMouseDown() { InternalHelpers.DoMiddleMouseDown(); }