EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

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"

 
clipboard_gettext Gets a string from the clipboard.
clipboard_empty Clear the clipboard.
clipboard_settext Copies a string into the clipboard.

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.