This property sets the shape of the cursor that is used inside the display area of the Thumbnail Control.
[Visual
Basic] thumbcontrolname.MouseCursorType
[ = CursorTypeConstants ]
[Visual
C++] thumbcontrolname.SetMouseCursorType(long
Val)
Property Value
Value | Explanation |
---|---|
0 | Standard arrow (Default) |
1 | Standard arrow and small hourglass |
2 | Crosshair |
3 | Standard arrow and question mark |
4 | I-beam |
6 | Slashed circle |
8 | Four-pointed arrow |
9 | Double-pointed arrow pointing northeast and southwest |
10 | Double-pointed arrow pointing north and south |
11 | Double-pointed arrow pointing northwest and southeast |
12 | Double-pointed arrow pointing west and east |
13 | Vertical arrow |
14 | Hourglass |
15 | Custom |
16 | Disable cursor |
In Visual Basic, the following constants can also be used: (ikCursorARROW = 0, ikCursorAPPSTARTING = 1, ikCursorCROSS = 2, ikCursorHELP = 3, ikCursorIBEAM = 4, ikCursorNO = 6, ikCursorSIZEALL = 8, ikCursorSIZENESW = 9, ikCursorSIZENS = 10, ikCursorSIZENWSE = 11, ikCursorSIZEWE = 12, ikCursorUPARROW = 13, ikCursorWAIT = 14, ikCursorCustom = 15, ikCursorNoShow = 16).
Explanation
The MouseCursorType property sets the shape of the cursor that is used inside the display area of the Thumbnail Control. When this property is 15 (ikCursorCustom), the appropriate cursor file name must be set in the MouseCursorFile property.
Setting this value
This value can be set at run-time.Retrieving this value
This value cannot be retrieved.