robot_2Generated
code_blocksInput

Description

The SizeH field is a member of the Editor.CursorShape enumeration. It represents a horizontal resize cursor shape, typically used to indicate that a user can resize an element horizontally.

Usage

Use Editor.CursorShape.SizeH when you need to change the cursor to a horizontal resize shape in your editor application. This is useful for UI elements that can be resized horizontally, such as window edges or resizable panels.

Example

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