|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| richedit.h
| Unicode
| No
| Platform Notes
| None
|
|
|
MSGFILTER
The MSGFILTER structure contains information about a keyboard or mouse event. A rich edit
control sends this structure to its parent window as part of an EN_MSGFILTER
notification message, enabling the parent to change the message or prevent it from
being processed.
typedef struct _msgfilter {
NMHDR nmhdr;
UINT msg;
_WPAD _wPad1;
WPARAM wParam;
_WPAD _wPad2;
LPARAM lParam;
} MSGFILTER;
Members
nmhdr
Specifies a NMHDR structure. The code member of the NMHDR structure is the EN_MSGFILTER notification code that identifies the message being sent.
msg
Specifies the keyboard or mouse message identifier.
wParam
Specifies the wParam parameter of the message.
lParam
Specifies the lParam parameter of the message.
See Also
EN_MSGFILTER
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|