Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.34 KB

File metadata and controls

48 lines (32 loc) · 1.34 KB

Home

Function name : EmptyClipboard

Group: Clipboard - Library: user32


The EmptyClipboard function empties the clipboard and frees handles to data in the clipboard


Code examples:

Testing Clipboard functions: emptying the clipboard
Placing an arbitrary rectangular area of main VFP window on the Clipboard
How to copy the image of a form to the Clipboard using Bitmap API functions
Bitmap Class for Visual FoxPro application
Passing data records between VFP applications via the Clipboard
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file

Declaration:

BOOL EmptyClipboard(VOID)  

FoxPro declaration:

DECLARE INTEGER EmptyClipboard  IN user32  

Parameters:

This function has no parameters


Return value:

If the function succeeds, the return value is TRUE


Comments:

Before calling EmptyClipboard, an application must open the clipboard by using the OpenClipboard function