public class CursorShape:
Portable mouse cursor shapes supported by graphical widgets.
Assign one of these values to Widget.cursor when a widget exposes a pointer interaction that should be visible before the user presses a mouse button.
splitter.cursor = CursorShape.RESIZE_HORIZONTAL
| Modifier and Type | Member | Description |
|---|---|---|
| public static readonly | ADDADD as String = "add" |
Arrow cursor with a small plus sign for additive selection. |
| public static readonly | CROSSHAIRCROSSHAIR as String = "crosshair" |
Crosshair cursor for precise graphical selection. |
| public static readonly | DEFAULTDEFAULT as String = "default" |
Standard arrow cursor. |
| public static readonly | MOVEMOVE as String = "move" |
Four-direction movement cursor. |
| public static readonly | NOT_ALLOWEDNOT_ALLOWED as String = "not-allowed" |
Cursor indicating that the pointed action is unavailable. |
| public static readonly | POINTERPOINTER as String = "pointer" |
Hand cursor for links and other directly activatable content. |
| public static readonly | RESIZE_HORIZONTALRESIZE_HORIZONTAL as String = "resize-horizontal" |
Left/right resize cursor. |
| public static readonly | RESIZE_NORTHEAST_SOUTHWESTRESIZE_NORTHEAST_SOUTHWEST as String = "resize-northeast-southwest" |
Northeast/southwest diagonal resize cursor. |
| public static readonly | RESIZE_NORTHWEST_SOUTHEASTRESIZE_NORTHWEST_SOUTHEAST as String = "resize-northwest-southeast" |
Northwest/southeast diagonal resize cursor. |
| public static readonly | RESIZE_VERTICALRESIZE_VERTICAL as String = "resize-vertical" |
Up/down resize cursor. |
| public static readonly | TEXTTEXT as String = "text" |
Text insertion cursor. |