The Finger
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that resembles a pointing finger, typically used to indicate clickable elements or links within an editor environment.
The Finger
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that resembles a pointing finger, typically used to indicate clickable elements or links within an editor environment.
Use the Editor.CursorShape.Finger
enumeration value when you want to change the cursor to a pointing finger shape. This is commonly used in user interfaces to indicate interactive elements such as buttons or hyperlinks.
// Example of setting the cursor shape to Finger Editor.SetCursorShape(Editor.CursorShape.Finger);