// 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 { /// /// Cursor type values. /// public enum CursorType { /// /// Pointer /// Pointer = 0, /// /// An enum constant representing the cross option. /// Cross, /// /// An enum constant representing the hand option. /// Hand, /// /// An enum constant representing the beam option. /// IBeam, /// /// An enum constant representing the wait option. /// Wait, /// /// An enum constant representing the help option. /// Help, /// /// An enum constant representing the east resize option. /// EastResize, /// /// An enum constant representing the north resize option. /// NorthResize, /// /// An enum constant representing the northeast resize option. /// NortheastResize, /// /// An enum constant representing the northwest resize option. /// NorthwestResize, /// /// An enum constant representing the south resize option. /// SouthResize, /// /// An enum constant representing the southeast resize option. /// SoutheastResize, /// /// An enum constant representing the southwest resize option. /// SouthwestResize, /// /// An enum constant representing the west resize option. /// WestResize, /// /// An enum constant representing the north south resize option. /// NorthSouthResize, /// /// An enum constant representing the east west resize option. /// EastWestResize, /// /// An enum constant representing the northeast southwest resize option. /// NortheastSouthwestResize, /// /// An enum constant representing the northwest southeast resize option. /// NorthwestSoutheastResize, /// /// An enum constant representing the column resize option. /// ColumnResize, /// /// An enum constant representing the row resize option. /// RowResize, /// /// An enum constant representing the middle panning option. /// MiddlePanning, /// /// An enum constant representing the east panning option. /// EastPanning, /// /// An enum constant representing the north panning option. /// NorthPanning, /// /// An enum constant representing the northeast panning option. /// NortheastPanning, /// /// An enum constant representing the northwest panning option. /// NorthwestPanning, /// /// An enum constant representing the south panning option. /// SouthPanning, /// /// An enum constant representing the southeast panning option. /// SoutheastPanning, /// /// An enum constant representing the southwest panning option. /// SouthwestPanning, /// /// An enum constant representing the west panning option. /// WestPanning, /// /// An enum constant representing the move option. /// Move, /// /// An enum constant representing the vertical text option. /// VerticalText, /// /// An enum constant representing the cell option. /// Cell, /// /// An enum constant representing the context menu option. /// ContextMenu, /// /// An enum constant representing the alias option. /// Alias, /// /// An enum constant representing the progress option. /// Progress, /// /// An enum constant representing the no drop option. /// NoDrop, /// /// An enum constant representing the copy option. /// Copy, /// /// An enum constant representing the none option. /// None, /// /// An enum constant representing the not allowed option. /// NotAllowed, /// /// An enum constant representing the zoom in option. /// ZoomIn, /// /// An enum constant representing the zoom out option. /// ZoomOut, /// /// An enum constant representing the grab option. /// Grab, /// /// An enum constant representing the grabbing option. /// Grabbing, /// /// An enum constant representing the custom option. /// Custom, } }