// Copyright © 2013 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. using System; namespace CefSharp { /// /// Supported event bit flags. /// [FlagsAttribute] public enum CefEventFlags : uint { None = 0, CapsLockOn = 1 << 0, ShiftDown = 1 << 1, ControlDown = 1 << 2, AltDown = 1 << 3, LeftMouseButton = 1 << 4, MiddleMouseButton = 1 << 5, RightMouseButton = 1 << 6, /// /// Mac OS-X command key. /// CommandDown = 1 << 7, NumLockOn = 1 << 8, IsKeyPad = 1 << 9, IsLeft = 1 << 10, IsRight = 1 << 11, AltGrDown = 1 << 12 } }