ISClipboard.SetText

Description

This function sets up the specified string as the clipboard content.

Syntax

object.SetText aText

Part Attribute Type Description
object Required
The object always implements the ISClipboard interface
aText In, Required
string
The text string to set up as clipboard content

Example

Set up the clipboard content and display it.

Dim aClipboard

Set aClipboard = Profile.GetClipboard
aClipboard.SetText("Simple text for example") 

Profile.MsgBox(aClipboard.GetText)
Note:

In Profile Client v8 on User Interface Clipboard can be found in Edit > Show Clipboard.

Version information

Added in v7.8.0