Class InputProviderKeyboardEventArgs
Contains data for input provider keyboard events
public class InputProviderKeyboardEventArgs : EventArgs
- Inheritance
-
objectInputProviderKeyboardEventArgs
- Inherited Members
Constructors
InputProviderKeyboardEventArgs(ArtemisDevice?, KeyboardKey, bool)
Creates a new instance of the InputProviderKeyboardEventArgs class
public InputProviderKeyboardEventArgs(ArtemisDevice? device, KeyboardKey key, bool isDown)
Parameters
deviceArtemisDeviceThe device that triggered the event
keyKeyboardKeyThe key that triggered the event
isDownboolWhether the key is pressed down
Properties
Device
Gets the device that triggered the event
public ArtemisDevice? Device { get; }
Property Value
IsDown
Gets whether the key is pressed down
public bool IsDown { get; }
Property Value
Key
Gets the key that triggered the event
public KeyboardKey Key { get; }