Reads text from the system clipboard.
Use this to bypass the usual "paste" operation (CTRL-V) needed in order to get text from the system clipboard.
menu: veeos ==> sys ==> fromClipboard
library: sysLib
If one brings up a text editor and types in "Hello World", then cuts it using CTRL-C, then in VEE o_fromClipboard() reads "Hello World" from the clipboard.
This can be useful in having VEE interact with other programs directly (use clipboard for IPC) or with the user in a semi-manual method. If the clipboard contains a graphic or other non-text content then a null string is returned.
Microsoft documents the underlying system call in their MSDN section.
This uses a dotNet system call to System.Windows.Forms and as such it may not be fully portable.
VEE 7.0+, all platforms