Description
The Editor.CursorShape.Wait
field represents a cursor shape that indicates a waiting state, typically used to show that a process is ongoing and the user should wait. This is a static member of the Editor.CursorShape
enumeration, which defines various cursor shapes that can be used within the editor environment.
Usage
Use the Editor.CursorShape.Wait
field when you need to change the cursor to a waiting state. This can be useful in scenarios where an operation is in progress, and you want to provide a visual indication to the user that they should wait for the operation to complete.
Example
// Example of setting the cursor shape to Wait
Editor.SetCursorShape(Editor.CursorShape.Wait);