...
None
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
// Copy some text to the Clipboard |
...
string $str1 = "This is "; |
...
string $str2 = "some text."; |
...
string $result; |
...
$result = $str1 + $str2; |
...
// Copy it |
...
copyString $result; |
...
None
void
Code Block | ||
---|---|---|
| ||
// Copy some text to the Clipboard |
...
string $str1 = "This is "; |
...
string $str2 = "some text."; |
...
string $result; |
...
$result = $str1 + $str2; |
...
// Copy it |
...
copyString $result; |