Clipboard.AddRawData

From Real Software Documentation

Jump to: navigation, search
Method
Clipboard.AddRawData ( Data as String,MacType as String )

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")
Personal tools