InkCursorButtonState Enumeration

InkCursorButtonState Enumeration

Defines values that specify the state of a cursor button.

Declaration

[C++]

typedef enum InkCursorButtonState {
    ICBS_CursorUnavailable = 0,
    ICBS_Up = 1,
    ICBS_Down = 2
} InkCursorButtonState;

[Microsoft® Visual Basic® 6.0]

Enum InkCursorButtonState
    ICBS_CursorUnavailable = 0
    ICBS_Up = 1
    ICBS_Down = 2
End Enum

Members

The following tables list the enumeration values.

Name Description
CursorUnavailable Shows that the cursor button is unavailable. A cursor button may become unavailable, for example, when a cursor leaves the range of Tablet PC.
Up Shows that the cursor button is up. A button on a pen tip is up when the pen is not pressed against the digitizer. A button on a pen barrel is up when the button is not depressed.
Down Shows that the cursor button is down. A button on a pen tip is down when the user lowers the pen to the digitizer and draws a stroke. For a button on a barrel, the button is down when the button is depressed.

Remarks

The CursorButton state for the mouse is always CursorUnavailable when the mouse buttons are up.