/// <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 mouse up in the cursor's current position. </summary> public static void PerformLeftMouseUp() { InternalHelpers.DoLeftMouseUp(); }