robot_2Generated
code_blocksInput

Description

The Editor.CursorShape.SplitV field represents a vertical split cursor shape. This cursor is typically used to indicate that a vertical split or resize operation can be performed, such as adjusting the width of columns in a table or a panel in a user interface.

Usage

Use the Editor.CursorShape.SplitV when you want to provide a visual cue to users that they can perform a vertical resizing action. This is commonly used in UI components where vertical adjustments are possible.

Example

// Example of setting the cursor shape to SplitV
Cursor.Current = Editor.CursorShape.SplitV;

// This would typically be used in a UI component where vertical resizing is possible
// For instance, when hovering over the border between two vertically adjacent panels.