PutClipBoard
PutClipBoard>SomeValue[,html_fragment]
Places the specified text onto the clipboard. A variable may be used, or a literal value. PutClipboard puts SomeValue on the clipboard with the CF_TEXT clipboard format. Optionally an html fragment can be included which will be added to the clipboard with the CF_HTML format.
Abbreviation : Put
See also: GetClipBoard, WaitClipBoard
Example
PutClipBoard>Hello World !!
//with html ...
PutClipBoard>Click Here,<html><body><b>Click Here</b></body></html>