System.Cursors

From Xojo Documentation

Read-Only Property (As MouseCursor )
MouseCursorValue = aSystem.Cursors

Supported for all project types and targets.

Provides access to the cursors in the Cursors module.

Notes

Use these cursors to change the current mouse pointer to any of the standard cursor shapes.

Example

The following line in the MouseDown event of a Canvas changes the cursor to the HandClosed cursor. Returning True allows the MouseUp event to be called.

Me.MouseCursor = System.Cursors.HandOpen
Return True

See Also

Cursors module; MouseCursor class.