CLIPBOARD$: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:_CLIPBOARD$}} | {{DISPLAYTITLE:_CLIPBOARD$}} | ||
The | The '''_CLIPBOARD$''' statement copies the [[STRING]] value into the system clipboard. | ||
{{PageSyntax}} | {{PageSyntax}} | ||
:{{Parameter| | : [[_CLIPBOARD$]] = {{Parameter|string_expression$}} | ||
{{PageDescription}} | {{PageDescription}} | ||
* | * {{Parameter|string_expression$}} is the string value to be sent to the clipboard. | ||
* The string | * The string value will replace everything previously in the clipboard. | ||
* Assemble long text into one string variable value before using this statement. | |||
* Add CHR$(13) + CHR$(10) CRLF characters to move to a new clipboard line. | |||
* When copying text files, end line CRLF characters 13 and 10 do not have to be added. | |||
* Numerical values can be converted to strings using [[STR$]], [[_MK$]], [[MKI$]], [[MKL$]], [[MKS$]], [[MKD$]], [[_BIN$]], [[HEX$]] or [[OCT$]]. | |||
* The clipboard can be used to copy, paste and communicate between running programs. | * The clipboard can be used to copy, paste and communicate between running programs. | ||
{{PageExamples}} | {{PageExamples}} | ||
;Example:Set 2 lines of text in the clipboard using a carriage return to end text lines | |||
{{CodeStart}} | {{CodeStart}} | ||
{{Cl| | {{Cl|DIM}} CrLf AS {{Cl|STRING}} * 2 'define as 2 byte STRING | ||
{{Cl| | CrLf = {{Cl|CHR$}}(13) + {{Cl|CHR$}}(10) 'carriage return & line feed | ||
{{Cl|_CLIPBOARD$}} = "This is line 1" + CrLf + "This is line 2" | |||
{{Cl|PRINT}} {{Cl|_CLIPBOARD$ (function)|CLIPBOARD$}} 'display what is in the clipboard | |||
{{Cl|PRINT}} | |||
{{CodeEnd}} | {{CodeEnd}} | ||
{{ | {{OutputStart}} | ||
This is line 1 | |||
This is line 2 | |||
{{OutputEnd}} | |||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[_CLIPBOARD$ ( | * [[_CLIPBOARD$ (function)]] | ||
* [[_CLIPBOARDIMAGE (function)]], [[_CLIPBOARDIMAGE]] (statement) | * [[_CLIPBOARDIMAGE (function)]], [[_CLIPBOARDIMAGE]] (statement) | ||
* [[CHR$]], [[ASCII]] (code table) | |||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 23:49, 24 February 2023
The _CLIPBOARD$ statement copies the STRING value into the system clipboard.
Syntax
- _CLIPBOARD$ = string_expression$
Description
- string_expression$ is the string value to be sent to the clipboard.
- The string value will replace everything previously in the clipboard.
- Assemble long text into one string variable value before using this statement.
- Add CHR$(13) + CHR$(10) CRLF characters to move to a new clipboard line.
- When copying text files, end line CRLF characters 13 and 10 do not have to be added.
- Numerical values can be converted to strings using STR$, _MK$, MKI$, MKL$, MKS$, MKD$, _BIN$, HEX$ or OCT$.
- The clipboard can be used to copy, paste and communicate between running programs.
Examples
- Example
- Set 2 lines of text in the clipboard using a carriage return to end text lines
DIM CrLf AS STRING * 2 'define as 2 byte STRING CrLf = CHR$(13) + CHR$(10) 'carriage return & line feed _CLIPBOARD$ = "This is line 1" + CrLf + "This is line 2" PRINT CLIPBOARD$ 'display what is in the clipboard |
This is line 1 This is line 2 |
See also
- _CLIPBOARD$ (function)
- _CLIPBOARDIMAGE (function), _CLIPBOARDIMAGE (statement)
- CHR$, ASCII (code table)