Difference between revisions of "Disguise"
From SCAR Divi Manual
(Created page with "==Definition== <func>procedure Disguise(const s: AnsiString);</func> ==Availability== SCAR Divi 3.00 > Current ==Description== Changes SCAR's program title and main window titl...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | procedure Disguise(const s: AnsiString); | ||
+ | </source> | ||
==Availability== | ==Availability== |
Revision as of 11:29, 26 June 2011
Contents
Definition
procedure Disguise(const s: AnsiString);
Availability
SCAR Divi 3.00 > Current
Description
Changes SCAR's program title and main window title to the string given by s to "disguise" SCAR.
Example
begin Disguise('Hello world!'); end.