CLIPBOARD_STRING_COPY

CLIPBOARD_STRING_COPY S

COPY TO THE CLIPBOARD THE STRING EXPRESSION S

  • Type: Command
  • Parameter: 1
  • Group: System

ACTION

The command CLIPBOARD_STRING_COPY S copies to the operating system clipboard the text in the string expression S.

SYNTAX: CLIPBOARD_STRING_COPY S

  • S = string expression.

USE

  • The command CLIPBOARD_STRING_COPY is used to copy a string expression to the system clipboard.

ERROR

  • If S is not a correct string expression.

EXAMPLE

dim a$,b$

a$="Hello"

b$="friends"

rem copy to the clipboard

clipboard_string_copy a$+" the "+b$

rem print the clipboard

print clipboard_string_paste$

SEE ALSO

CLIPBOARD_STRING_PASTE$