ICNM_STROKEDELETED
4/8/2010
A WM_NOTIFY message is sent to the parent of the InkCanvas control with this notification code when one or more strokes are deleted.
Syntax
ICNM_STROKEDELETED
wparam = WPARAM) (int) idCtrl;
lParam = (LPARAM) (NMSTROKE*) pNmStroke;
Parameters
pNmStroke
Pointer to an NMSTROKE structure containing information about the deleted stroke(s).The NMSTROKE structure is defined as
typedef struct NMSTROKE
{
NMHDR hdr;
long lStrokeID;
} NMSTROKE, *LPNMSTROKE;
where hdr contains additional information about the notification, and lStrokeID indicates the Stroke ID of the deleted strokes. If multiple strokes are deleted, lStrokeID is 0.
- idCtrl
The control ID of the window.
Return Value
The return value is ignored.
Requirements
Header | inkctrls.h |
Windows Embedded CE | Windows CE 5.0 and later |
Windows Mobile | Windows Mobile 6 Classic and later, Windows Mobile 6 Professional and later |