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

ReleaseRight() public method

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