Edit

Share via


InkCollectorEventInterest enumeration (msinkaut.h)

Defines values that are used to specify whether an event occurred on an ink collector and, if so, which event fired. To get the status of a given event, call the GetEventInterest method. To set the status of a given event, call the SetEventInterest method.

Syntax

typedef enum InkCollectorEventInterest {
  ICEI_DefaultEvents = -1,
  ICEI_CursorDown,
  ICEI_Stroke,
  ICEI_NewPackets,
  ICEI_NewInAirPackets,
  ICEI_CursorButtonDown,
  ICEI_CursorButtonUp,
  ICEI_CursorInRange,
  ICEI_CursorOutOfRange,
  ICEI_SystemGesture,
  ICEI_TabletAdded,
  ICEI_TabletRemoved,
  ICEI_MouseDown,
  ICEI_MouseMove,
  ICEI_MouseUp,
  ICEI_MouseWheel,
  ICEI_DblClick,
  ICEI_AllEvents
} ;

Constants

 
ICEI_DefaultEvents
Value: -1
The ink collector is interested in the Stroke, CursorInRange, and CursorOutOfRange events.
ICEI_CursorDown
The ink collector detects a cursor down.
ICEI_Stroke
Specifies that a new stroke is drawn on a tablet.
ICEI_NewPackets
The ink collector receives a packet.
ICEI_NewInAirPackets
The ink collector detects an in-air packet.
ICEI_CursorButtonDown
The ink collector detects a cursor button down.
ICEI_CursorButtonUp
The ink collector detects a cursor button up.
ICEI_CursorInRange
Specifies that a cursor is detected in range of a tablet.
ICEI_CursorOutOfRange
Specifies that a cursor is detected leaving the range of a tablet.
ICEI_SystemGesture
The ink collector recognizes a system gesture.
ICEI_TabletAdded
Specifies that a tablet was added to the system.
ICEI_TabletRemoved
Specifies that a tablet was removed from the system.
ICEI_MouseDown
The mouse pointer is over the object and a mouse button is pressed.
ICEI_MouseMove
The mouse pointer is moved over the object.
ICEI_MouseUp
The mouse pointer is over the object and a mouse button is released.
ICEI_MouseWheel
The mouse wheel moves while the object has focus.
ICEI_DblClick
The object was double-clicked.
ICEI_AllEvents
The ink collector recognizes all events.

Requirements

Requirement Value
Minimum supported client Windows XP Tablet PC Edition [desktop apps only]
Minimum supported server None supported
Header msinkaut.h

See also

GetEventInterest Method

InkCollector Class

InkOverlay Class

InkPicture Control Reference

SetEventInterest Method