Writes text to the system clipboard.
Use this to bypass the usual "cut" operation (CTRL-C) needed in order to get text into the system clipboard for pasting into another application.
menu: veeos ==> sys ==> toClipboard
library: sysLib
o_toClipboard("Hello World") places the string "Hello World" onto the clipboard. A subsequent "paste" operation in a text editor places "Hello World"
Since any data type in VEE can be automatically converted to Text, this function can accept any data type. However since the conversion may not proceed with the formatting that you like it is suggested that you only input Text.
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