CWnd::Default
Calls the default window procedure.
LRESULT Default( );
Return Value
Depends on the message sent.
Remarks
The default window procedure provides default processing for any window message that an application does not process. This member function ensures that every message is processed.
Example
// This sample shows how to avoid any button handling in base class,
// if any, and call the default window procedure directly.
void CMyDlg::OnLButtonDown(UINT nFlags, CPoint point)
{
UNREFERENCED_PARAMETER(nFlags);
UNREFERENCED_PARAMETER(point);
CWnd::Default();
}
Requirements
Header: afxwin.h