robot_2Generated
code_blocksInput

Description

The Arrow field is a member of the Editor.CursorShape enumeration. It represents the standard arrow cursor shape, which is commonly used as the default cursor in graphical user interfaces. This cursor shape is typically used to indicate a general selection or interaction mode.

Usage

To use the Arrow cursor shape in your application, you can set the cursor to this shape when you want to indicate a default interaction mode. This is often used when the user is expected to select or interact with elements in a standard manner.

Example

// Example of setting the cursor shape to Arrow
Editor.CursorShape currentCursor = Editor.CursorShape.Arrow;

// Use the currentCursor variable to set the cursor in your application
// This is a placeholder for actual cursor setting logic
SetCursorShape(currentCursor);