IEC_STROKEINFO structure (inked.h)

Contains information about a Stroke event.

Syntax

struct IEC_STROKEINFO {
  NMHDR          nmhdr;
  IInkCursor     *Cursor;
  IInkStrokeDisp *Stroke;
};

Members

nmhdr

Specifies 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_STROKE. 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 IInkStrokeDisp object.

Stroke

The IInkStrokeDisp object that was created.

Requirements

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

See also

IInkStrokeDisp Interface

InkEdit

Stroke Event [InkEdit Control]

Using the COM Library