The mouse cursor to appear when over the control.
Usage
Set_Property(OLECtrlEntID, "OLE.Cursor", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Abbr. | Description |
---|---|---|
None | N | No cursor is displayed |
Dot | D | A dot cursor is displayed |
Pencil | P | A pencil cursor is displayed |
Default: Pencil
Remarks
The Cursor property establishes the cursor to be used when the user moves the mouse over the control. By default, a pencil cursor is shown. However, you can change this to a less intrusive dot if you desire. If you know the control will be running on a tablet, you can also choose to show no cursor at all.
Example
// Use the dot cursor Set_Property(@Window:".OLE_SIGNATURE", "OLE.Cursor", "Dot")