From Real Software Documentation
Method
Copies the passed data to the Clipboard.
Example
The following example places the contents of TextArea1 on the Clipboard. It contains a TeX file.
dim s as string
s=textarea1.text //contains Latex file
dim c as Clipboard
c.AddRawData(s,"TEXT")