Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
4/8/2010
A WM_NOTIFY message is sent to the parent of the InkCanvas control with this notification code if the control does not handle a WM_CHAR message..
Syntax
ICNM_CHAR
wparam = WPARAM) (int) idCtrl;
lParam = (LPARAM) (NMSTROKE*) pNmStroke;
Parameters
pNmStroke
Pointer to an NMCHR structure containing information about the character.The NMSTROKE structure is defined as
typedef struct NMCHR{NMHDR hdr;UINT ch;DWORD info;} NMCHR, *LPNMCHR;where hdr contains additional information about the notification, ch indicates the character that is being processed, as passed as the wParam of the WM_CHAR message, and info is the lParam of the WM_CHAR message.
- 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 |