Difference between revisions of "SetClipboard"
From SCAR Divi Manual
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | This function sets the content from the clipboard to | + | This function sets the content from the clipboard to a [[string]] '''Str'''. This function erases all previous content in the clipboard. |
==Example== | ==Example== |
Latest revision as of 16:07, 4 April 2012
Definition
procedure SetClipboard(const Str: string);
Availability
SCAR Divi 3.25 > Current
Description
This function sets the content from the clipboard to a string Str. This function erases all previous content in the clipboard.
Example
begin SetClipboard('Test'); WriteLn(GetClipboard); end.