Version 101.0.180 
            KeyType Enum.
            Maps to https://magpcss.org/ceforum/apidocs3/projects/(default)/cef_key_event_type_t.html
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
 Syntax
Syntaxpublic enum class KeyType
 Members
Members|  | Member name | Value | Description | 
|---|
|  | RawKeyDown | 0 | Notification that a key transitioned from"up" to"down". | 
|  | KeyDown | 1 | Notification that a key was pressed. This does not necessarily correspond to a character depending on the key and language.
            Use  for character input. | 
|  | KeyUp | 2 | Notification that a key was released. | 
|  | Char | 3 | 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
See Also