admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// 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.Enums
{
    /// <summary>
    /// Cursor type values.
    /// </summary>
    public enum CursorType
    {
        /// <summary>
        /// Pointer
        /// </summary>
        Pointer = 0,
        /// <summary>
        /// An enum constant representing the cross option.
        /// </summary>
        Cross,
        /// <summary>
        /// An enum constant representing the hand option.
        /// </summary>
        Hand,
        /// <summary>
        /// An enum constant representing the beam option.
        /// </summary>
        IBeam,
        /// <summary>
        /// An enum constant representing the wait option.
        /// </summary>
        Wait,
        /// <summary>
        /// An enum constant representing the help option.
        /// </summary>
        Help,
        /// <summary>
        /// An enum constant representing the east resize option.
        /// </summary>
        EastResize,
        /// <summary>
        /// An enum constant representing the north resize option.
        /// </summary>
        NorthResize,
        /// <summary>
        /// An enum constant representing the northeast resize option.
        /// </summary>
        NortheastResize,
        /// <summary>
        /// An enum constant representing the northwest resize option.
        /// </summary>
        NorthwestResize,
        /// <summary>
        /// An enum constant representing the south resize option.
        /// </summary>
        SouthResize,
        /// <summary>
        /// An enum constant representing the southeast resize option.
        /// </summary>
        SoutheastResize,
        /// <summary>
        /// An enum constant representing the southwest resize option.
        /// </summary>
        SouthwestResize,
        /// <summary>
        /// An enum constant representing the west resize option.
        /// </summary>
        WestResize,
        /// <summary>
        /// An enum constant representing the north south resize option.
        /// </summary>
        NorthSouthResize,
        /// <summary>
        /// An enum constant representing the east west resize option.
        /// </summary>
        EastWestResize,
        /// <summary>
        /// An enum constant representing the northeast southwest resize option.
        /// </summary>
        NortheastSouthwestResize,
        /// <summary>
        /// An enum constant representing the northwest southeast resize option.
        /// </summary>
        NorthwestSoutheastResize,
        /// <summary>
        /// An enum constant representing the column resize option.
        /// </summary>
        ColumnResize,
        /// <summary>
        /// An enum constant representing the row resize option.
        /// </summary>
        RowResize,
        /// <summary>
        /// An enum constant representing the middle panning option.
        /// </summary>
        MiddlePanning,
        /// <summary>
        /// An enum constant representing the east panning option.
        /// </summary>
        EastPanning,
        /// <summary>
        /// An enum constant representing the north panning option.
        /// </summary>
        NorthPanning,
        /// <summary>
        /// An enum constant representing the northeast panning option.
        /// </summary>
        NortheastPanning,
        /// <summary>
        /// An enum constant representing the northwest panning option.
        /// </summary>
        NorthwestPanning,
        /// <summary>
        /// An enum constant representing the south panning option.
        /// </summary>
        SouthPanning,
        /// <summary>
        /// An enum constant representing the southeast panning option.
        /// </summary>
        SoutheastPanning,
        /// <summary>
        /// An enum constant representing the southwest panning option.
        /// </summary>
        SouthwestPanning,
        /// <summary>
        /// An enum constant representing the west panning option.
        /// </summary>
        WestPanning,
        /// <summary>
        /// An enum constant representing the move option.
        /// </summary>
        Move,
        /// <summary>
        /// An enum constant representing the vertical text option.
        /// </summary>
        VerticalText,
        /// <summary>
        /// An enum constant representing the cell option.
        /// </summary>
        Cell,
        /// <summary>
        /// An enum constant representing the context menu option.
        /// </summary>
        ContextMenu,
        /// <summary>
        /// An enum constant representing the alias option.
        /// </summary>
        Alias,
        /// <summary>
        /// An enum constant representing the progress option.
        /// </summary>
        Progress,
        /// <summary>
        /// An enum constant representing the no drop option.
        /// </summary>
        NoDrop,
        /// <summary>
        /// An enum constant representing the copy option.
        /// </summary>
        Copy,
        /// <summary>
        /// An enum constant representing the none option.
        /// </summary>
        None,
        /// <summary>
        /// An enum constant representing the not allowed option.
        /// </summary>
        NotAllowed,
        /// <summary>
        /// An enum constant representing the zoom in option.
        /// </summary>
        ZoomIn,
        /// <summary>
        /// An enum constant representing the zoom out option.
        /// </summary>
        ZoomOut,
        /// <summary>
        /// An enum constant representing the grab option.
        /// </summary>
        Grab,
        /// <summary>
        /// An enum constant representing the grabbing option.
        /// </summary>
        Grabbing,
        /// <summary>
        /// An enum constant representing the custom option.
        /// </summary>
        Custom,
    }
}