CWnd::FilterToolTipMessage
Called by the framework to display tool tip messages.
void FilterToolTipMessage(
MSG* pMsg
);
Parameters
- pMsg
A pointer to the tool tip message.
Remarks
In most MFC applications this method is called by the framework from PreTranslateMessage and EnableToolTips, and you do not need to call it yourself.
However, in certain applications, for example some ActiveX controls, these methods might not be invoked by the framework, and you will need to call FilterToolTipMessage yourself. For more information, see Methods of Creating Tool Tips.
Requirements
Header: afxwin.h
See Also
Reference
Concepts
Change History
Date |
History |
Reason |
---|---|---|
June 2010 |
Added text to clarify when to call this method in your own application. |
Customer feedback. |