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

PressRight() public method

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