IEC_GESTUREINFO (Win32 Only) structure
Contains information about a specific gesture.
Syntax
struct IEC_GESTUREINFO {
NMHDR nmhdr;
IInkCursor *Cursor;
IInkStrokes *Strokes;
VARIANT Gestures;
};
Members
- nmhdr
-
The NMHDR structure that contains standard information about the WM_NOTIFY message. The NMHDR structure contains the handle and identifier of the control that is sending the message and the notification code, which in this case is IECN_GESTURE. The format of the NMHDR structure is:
typedef struct tagNMHDR { HWND hwndFrom; UINT idFrom; UINT code; } NMHDR;
- Cursor
-
The IInkCursor object that was used to create the gesture.
- Strokes
-
The InkStrokes collection that makes up the gesture.
- Gestures
-
An array of IInkGesture objects, in order of confidence. For more information about this member, see the Gesture event.
For more information about the VARIANT structure, see Using the COM Library.
Requirements
|
Minimum supported client |
Windows XP Tablet PC Edition [desktop apps only] |
|---|---|
|
Minimum supported server |
None supported |
|
Header |
|
See also