IEC_GESTUREINFO Structure (Win32 Only)
IEC_GESTUREINFO Structure (Win32 Only) |
Contains information about a specific gesture.
Declaration
[C++]
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 Automation Library.