-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathTouchEventType.cs
More file actions
29 lines (28 loc) · 804 Bytes
/
TouchEventType.cs
File metadata and controls
29 lines (28 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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
{
/// <summary>
/// Touch Event Type
/// </summary>
public enum TouchEventType
{
/// <summary>
/// An enum constant representing the released option.
/// </summary>
Released = 0,
/// <summary>
/// An enum constant representing the pressed option.
/// </summary>
Pressed,
/// <summary>
/// An enum constant representing the moved option.
/// </summary>
Moved,
/// <summary>
/// An enum constant representing the cancelled option.
/// </summary>
Cancelled
}
}