Binarysharp.MemoryManagement.Windows.Mouse.SendInputMouse.PressLeft C# (CSharp) Method

PressLeft() public method

Presses the left button of the mouse at the current cursor position.
public PressLeft ( ) : void
return void
        public override void PressLeft()
        {
            var input = CreateInput();
            input.Mouse.Flags = MouseFlags.LeftDown;
            WindowCore.SendInput(input);
        }