Binarysharp.MemoryManagement.Windows.Keyboard.MessageKeyboard.Release C# (CSharp) Method

Release() public method

Releases the specified virtual key to the window.
public Release ( Keys key ) : void
key Keys The virtual key to release.
return void
        public override void Release(Keys key)
        {
            // Call the base function
            base.Release(key);
            Window.PostMessage(WindowsMessages.KeyUp, new UIntPtr((uint)key), MakeKeyParameter(key, true));
        }