Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

A WM_NOTIFYmessage is sent to the parent of the InkCanvascontrol 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 hdrcontains additional information about the notification, and lStrokeIDindicates the Stroke ID of the deleted strokes. If multiple strokes are deleted, lStrokeIDis 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

See Also