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

ReleaseLeft() public method

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