CWnd::Default
LRESULT Default();
Return Value
Depends on the message sent.
Remarks
Calls the default window procedure. 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 CTestwndView::OnLButtonDown(UINT nFlags, CPoint point)
{
CWnd::Default();
}
CWnd Overview | Class Members | Hierarchy Chart
See Also CWnd::DefWindowProc,