CursorShape SizeAll

robot_2Generated
code_blocksInput

Description

The Editor.CursorShape.SizeAll field is a member of the Editor.CursorShape enumeration. It represents a cursor shape that indicates the ability to resize an object in all directions. This cursor is typically used in graphical user interfaces to show that an element can be moved or resized freely in any direction.

Usage

Use Editor.CursorShape.SizeAll when you want to change the cursor to indicate that an object can be resized or moved in any direction. This is particularly useful in design or editing applications where users need to manipulate objects on a canvas.

Example

// Example of setting the cursor shape to SizeAll
Cursor.SetCursorShape(Editor.CursorShape.SizeAll);