CWnd::OnChangeCbChain

 

The framework calls this member function for each window in the Clipboard-viewer chain to notify it that a window is being removed from the chain.

Syntax

      afx_msg void OnChangeCbChain(
   HWND hWndRemove,
   HWND hWndAfter 
);

Parameters

  • hWndRemove
    Specifies the window handle that is being removed from the Clipboard-viewer chain.

  • hWndAfter
    Specifies the window handle that follows the window being removed from the Clipboard-viewer chain.

Remarks

Each CWnd object that receives an OnChangeCbChain call should use the SendMessage Windows function to send the WM_CHANGECBCHAIN message to the next window in the Clipboard-viewer chain (the handle returned by SetClipboardViewer). If hWndRemove is the next window in the chain, the window specified by hWndAfter becomes the next window, and Clipboard messages are passed on to it.

Note

This member function is called by the framework to allow your application to handle a Windows message. The parameters passed to your function reflect the parameters received by the framework when the message was received. If you call the base-class implementation of this function, that implementation will use the parameters originally passed with the message and not the parameters you supply to the function.

Requirements

Header: afxwin.h

See Also

CWnd Class
Hierarchy Chart
CWnd::ChangeClipboardChain
SendMessage