Copies a string to the system clipboard, as unformatted, plain text.
System
copyString text |
Name | Type | Required | Comments |
---|---|---|---|
text | string | yes | Text to copy to the clipboard. |
None
void
// Copy some text to the Clipboard
string $str1 = "This is ";
string $str2 = "some text.";
string $result;
$result = $str1 + $str2;
// Copy it
copyString $result;