This message is sent by an application to determine whether the contents of an edit control have been modified. This message has no parameters.
At a Glance
Header file: | Winuser.h |
Windows CE versions: | 1.0 and later |
Syntax
EM_GETMODIFY wParam = 0; lParam = 0;
Return Values
TRUE indicates that the content of edit control has been modified. FALSE indicates otherwise.
Remarks
The system maintains an internal flag indicating whether the content of the edit control has been changed. This flag is cleared when the edit control is first created; alternatively, an application can send an EM_SETMODIFY message to the edit control to clear the flag.
See Also