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

Press() public method

Presses the specified virtual key to the window.
public Press ( Keys key ) : void
key Keys The virtual key to press.
return void
        public override void Press(Keys key)
        {
            Window.PostMessage(WindowsMessages.KeyDown, new UIntPtr((uint)key), MakeKeyParameter(key, false));
        }