Clipboard Instruction/Function

Syntax

Clipboard Text$
-or-
Clipboard[$][( )]

Group

Miscellaneous

Description

Form 1 - Sets the clipboard to Text$. This is similar to the Edit|Copy menu command.

Form 2 - Returns the text in the clipboard.

Sandbox

Sandbox mode blocks this instruction.

Parameters

Parameters Description
Text$ Puts this string value into the clipboard.

Example


Sub Main
    Debug.Print Clipboard$()
    Clipboard "Hello"
    Debug.Print Clipboard$() '"Hello"
End Sub