C++
BOOL PreTranslateMessage( MSG* pMsg ) override;
Description
This MFC-defined method is called to alter a message prior to dispatching it to TranslateMessage(). The default handler activates the ToolTip (for example, m_pToolTip, if not NULL) and relays the message to the tip. The value returned by the call to the inherited PreTranslatMessage() is returned, which is normally TRUE if the message was translated and should not be dispatched or FALSE if the message was not translated and should be dispatched.
Parameters
Parameters | Description |
---|---|
pMsg | Points to a MSG structure that contains the message to process |