Description
The Editor.CursorShape.BitmapCursor
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that is defined by a bitmap image. This allows for custom cursor designs that are not limited to the standard cursor shapes provided by the system.
Usage
To use the BitmapCursor
in your application, you can set the cursor shape to this value when you want to display a custom bitmap cursor. Ensure that the bitmap image is properly loaded and available for use as a cursor.
Example
// Example of setting a custom bitmap cursor
Editor.CursorShape currentCursor = Editor.CursorShape.BitmapCursor;
// Assuming you have a method to set the cursor
SetCursor(currentCursor);