SetClipboard

From SCAR Divi Manual
Revision as of 17:07, 4 April 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.

See Also