robot_2Generated
code_blocksInput

Description

The SizeV field is a member of the Editor.CursorShape enumeration. It represents a vertical resize cursor shape, typically used to indicate that a user can resize a window or a UI element vertically.

Usage

Use Editor.CursorShape.SizeV when you need to change the cursor to a vertical resize shape in your editor or application. This is useful in scenarios where the user needs to adjust the height of a resizable element.

Example

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