robot_2Generated
code_blocksInput

Description

The Editor.CursorShape.SplitH field is a member of the Editor.CursorShape enumeration. It represents a horizontal split cursor shape, typically used to indicate that a UI element can be resized horizontally. This cursor shape is commonly used in graphical user interfaces where horizontal resizing is possible, such as in split views or panels.

Usage

To use the Editor.CursorShape.SplitH in your application, you can set it as the cursor shape for a UI element that supports horizontal resizing. This can be done by assigning it to the cursor property of the element when the mouse is over the resizable area.

Example

// Example of setting the cursor shape to SplitH
UIElement element = new UIElement();
element.Cursor = Editor.CursorShape.SplitH;