Clipboard
These functions are used to work with the Windows clipboard. For using this library, it is required to specify the file clipboard.g (from lib\clipboard subfolder) with include command.
include : $"...\gentee\lib\clipboard\clipboard.g"
Methods
buf.getclip |
Copy the clipboard data to buf variable. |
buf.setclip |
Copy the data of the buf variable to the clipboard. |
str.getclip |
Copy the clipboard data to str variable if the clipboard contains text data. |
str.setclip |
Copy a string to the clipboard. |
ustr.getclip |
Copy the clipboard data to unicode str variable if the clipboard contains unicode text data. |
ustr.setclip |
Copy a unicode string to the clipboard. |