Platform |
Win32, x64 | |||||||||||||||||||||||||||||||||||||||||||||
Purpose |
To copy data from the clipboard. |
|||||||||||||||||||||||||||||||||||||||||||||
Syntax |
INTEGER FUNCTION COPY_FROM_CLIPBOARD@( BUFFER, NUM, TYPE ) |
|||||||||||||||||||||||||||||||||||||||||||||
Description |
Use this routine to copy anything from the clipboard. The following data types can exist in the clipboard, though not all are directly supported by ClearWin+: |
|||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||
|
The BUFFER will contain NUM bytes copied from the clipboard. To determine the length of CF_TEXT or CF_OEMTEXT the routine SIZEOF_CLIPBOARD_TEXT@ can be called. On 64-bit systems more than 2GB of data canvas can be copied from the clipboard using COPY_FROM_CLIPBOARD64@. |
|||||||||||||||||||||||||||||||||||||||||||||
Return value |
Returns 1 for success or zero for failure. |
|||||||||||||||||||||||||||||||||||||||||||||
See also |
COPY_TO_CLIPBOARD@, COPY_TO_CLIPBOARD64@, COPY_FROM_CLIPBOARD64@, CLIPBOARD_TO_SCREEN_BLOCK@, GRAPHICS_TO_CLIPBOARD@, SIZEOF_CLIPBOARD_TEXT@, SIZEOF_CLIPBOARD_TEXT64@ |
|||||||||||||||||||||||||||||||||||||||||||||
Example |
INTEGER addr,len,i |