ClipPut

Copies a string to the Clipboard.

Syntax:

ClipPut ( string )

Parameters:

(s) string: any text string.

Returns:

(i)  @TRUE if string was copied.

 

Use this function to copy a string to the Windows Clipboard. The previous Clipboard contents will be lost.

 

Example:


; The code below will convert Clipboard contents to
; lowercase
ClipPut(StrLower(ClipGet( )))
a = ClipGet( )
Message("lowercase Clipboard Contents", a)
See Also:

ClipAppend, ClipGet, SnapShot