Clipboard Instruction/Function |
Syntax:
Clipboard Text$
Or
Clipboard[$][( )]
Group:
Description:
Form 1: Sets the clipboard to Text$. This is like the Edit|Copy menu command.
Form 2: Returns the text in the clipboard.
Parameters:
Parameter |
Description |
Put this string value into the clipboard. |
Example:
Sub Main
Debug.Print Clipboard$()
Clipboard "Hello"
Debug.Print Clipboard$() '"Hello"
EndSub