Binarysharp.MemoryManagement.Windows.Mouse.BaseMouse.MoveTo C# (CSharp) Method

MoveTo() public method

Moves the cursor at the specified coordinate from the position of the window.
public MoveTo ( int x, int y ) : void
x int The x-coordinate.
y int The y-coordinate.
return void
        public void MoveTo(int x, int y)
        {
            MoveToAbsolute(Window.X + x, Window.Y + y);
        }