Skip to content

Keyboard Events

Martin Konopka edited this page Apr 23, 2018 · 9 revisions

Keyboard events provides logging of participant's keystrokes.

Recording Data

Each keyboard event may represent key press, pushing the key down, or releasing the key to go up.

  • Timestamp : DateTime
  • EventType : KeyboardEventType - one of the following values:
    • "KeyPress"
    • "KeyDown"
    • "KeyUp"
  • Alt : boolean
  • Control : boolean
  • KeyCode : Key
  • KeyData : Key
  • Modifiers : Key
  • Shift : boolean
  • KeyChar : char

KeyboardEventData class definition

Remarks

Clone this wiki locally