RemoveClipboardFormatListener function
Applies to: desktop apps only
Removes the given window from the system-maintained clipboard format listener list.
Syntax
BOOL WINAPI RemoveClipboardFormatListener( __in HWND hwnd );
Parameters
- hwnd [in]
-
Type: HWND
A handle to the window to remove from the clipboard format listener list.
Return value
Type: BOOL
Returns TRUE if successful, FALSE otherwise. Call GetLastError for additional details.
Remarks
When a window has been removed from the clipboard format listener list, it will no longer receive WM_CLIPBOARDUPDATE messages.
Requirements
|
Minimum supported client | Windows Vista |
|---|---|
|
Minimum supported server | Windows Server 2008 |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
Send comments about this topic to Microsoft
Build date: 3/6/2012
This call matches AddClipboardFormatListener
Call this function to stop listening for clipboard events that your application started listening to by calling AddClipboardFormatListener.
- 9/20/2011
- Jack Tripper