Binarysharp.MemoryManagement.Windows.Mouse.SendInputMouse.PressLeft C# (CSharp) Метод

PressLeft() публичный Метод

Presses the left button of the mouse at the current cursor position.
public PressLeft ( ) : void
Результат void
        public override void PressLeft()
        {
            var input = CreateInput();
            input.Mouse.Flags = MouseFlags.LeftDown;
            WindowCore.SendInput(input);
        }