// Copyright © 2019 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.Enums { /// /// Touch Event Type /// public enum TouchEventType { /// /// An enum constant representing the released option. /// Released = 0, /// /// An enum constant representing the pressed option. /// Pressed, /// /// An enum constant representing the moved option. /// Moved, /// /// An enum constant representing the cancelled option. /// Cancelled } }