InkMousePointer Enumeration (Automation Only)

InkMousePointer Enumeration (Automation Only)

Defines values that specify the type of mouse pointer to appear.

Declaration

[C++]

typedef enum InkMousePointer {
    IMP_Default = 0,
    IMP_Arrow = 1,
    IMP_Crosshair = 2,
    IMP_Ibeam = 3,
    IMP_SizeNESW = 4,
    IMP_SizeNS = 5,
    IMP_SizeNWSE = 6,
    IMP_SizeWE = 7,
    IMP_UpArrow = 8,
    IMP_Hourglass = 9,
    IMP_NoDrop = 10,
    IMP_ArrowHourglass = 11,
    IMP_ArrowQuestion = 12,
    IMP_SizeAll = 13,
    IMP_Hand = 14,    IMP_Custom = 99
} InkMousePointer;

[Microsoft® Visual Basic® 6.0]

Enum InkMousePointer
    IMP_Default = 0
    IMP_Arrow = 1
    IMP_Crosshair = 2
    IMP_Ibeam = 3
    IMP_SizeNESW = 4
    IMP_SizeNS = 5
    IMP_SizeNWSE = 6
    IMP_SizeWE = 7
    IMP_UpArrow = 8
    IMP_Hourglass = 9
    IMP_NoDrop = 10
    IMP_ArrowHourglass = 11
    IMP_ArrowQuestion = 12
    IMP_SizeAll = 13
    IMP_Hand = 14
    IMP_Custom = 99
End Enum

Members

The following tables list the enumeration values.

Name Description
IMP_Default Specifies the default mouse pointer.
IMP_Arrow Specifies the arrow mouse pointer.
IMP_Crosshair Specifies the cross (cross-hair) mouse pointer.
IMP_Ibeam Specifies the I-beam mouse pointer.
IMP_SizeNESW Specifies the sizing handle NE/SW mouse pointer (double arrow that points northeast and southwest).
IMP_SizeNS Specifies the sizing handle N/S mouse pointer (double arrow that points north and south).
IMP_SizeNWSE Specifies the sizing handle NW/SE mouse pointer (double arrow that points northwest and southeast).
IMP_SizeWE Specifies the sizing handle W/E mouse pointer (double arrow that points west and east).
IMP_UpArrow Specifies the up arrow mouse pointer.
IMP_Hourglass Specifies the hourglass (wait) mouse pointer.
IMP_NoDrop Specifies the no-drop mouse pointer.
IMP_ArrowHourglass Specifies the arrow and hourglass mouse pointer.
IMP_ArrowQuestion Specifies the arrow and question mark mouse pointer.
IMP_SizeAll Specifies the size-all mouse pointer.
IMP_Hand Specifies the hand mouse pointer.
IMP_Custom Specifies the custom mouse pointer that the MouseIcon property specifies.