Binarysharp.MemoryManagement.Windows.Keyboard.MessageKeyboard.Press C# (CSharp) Méthode

Press() public méthode

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