CWnd::ReflectChildNotify
BOOL ReflectChildNotify( UINT message**, WPARAM** wParam**, LPARAM** lParam**, LRESULT*** pResult );
Return Value
TRUE if message was reflected; otherwise FALSE.
Parameters
message
Specifies the message to be reflected.
wParam
Specifies additional message-dependent information.
lParam
Specifies additional message-dependent information.
pResult
The result generated by the child window to be returned by the parent window. Can be NULL.
Remarks
This message function is called by the framework from OnChildNotify. It is a helper function which reflects message to its source.
Reflected messages are sent directly to CWnd::OnWndMsg or CCmdTarget::OnCmdMsg.
For more information about message reflection, see in the Visual C++ Programmer’s Guide.
CWnd Overview | Class Members | Hierarchy Chart
See Also CWnd::OnChildNotify, CWnd::SendChildNotifyLastMsg, CWnd::OnWndMsg, CCmdTarget::OnCmdMsg, CWnd::ReflectLastMsg