Click or drag to resize

KeyEventType Enumeration

Version 86.0.240
Values that represent key event types.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public enum KeyEventType
Members
  Member nameValueDescription
RawKeyDown0 Notification that a key transitioned from "up" to "down".
KeyDown1 Notification that a key was pressed. This does not necessarily correspond to a character depending on the key and language. Use KEYEVENT_CHAR for character input.
KeyUp2 Notification that a key was released.
Char3 Notification that a character was typed. Use this for text input. Key down events may generate 0, 1, or more than one character event depending on the key, locale, and operating system.
See Also