CursorShape WhatsThis

robot_2Generated
code_blocksInput

Description

The WhatsThis field is a member of the Editor.CursorShape enumeration. It represents a cursor shape that is typically used to indicate a context-sensitive help feature, where the user can click on an element to get more information about it.

Usage

Use the WhatsThis cursor shape when you want to provide users with a visual cue that they can click on an element to receive additional information or help. This is commonly used in applications to enhance user experience by providing context-sensitive help.

Example

// Example of setting the cursor shape to WhatsThis
Editor.CursorShape currentCursor = Editor.CursorShape.WhatsThis;

// Assuming a method to set the cursor shape exists
SetCursorShape(currentCursor);