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

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

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