// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Values that represent key event types.
///
public enum KeyEventType
{
///
/// Notification that a key transitioned from "up" to "down".
///
RawKeyDown = 0,
///
/// 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.
///
KeyDown,
///
/// Notification that a key was released.
///
KeyUp,
///
/// 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.
///
Char
}
}