Difference between revisions of "Disguise"
From SCAR Divi Manual
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | procedure Disguise(const | + | procedure Disguise(const Str: string); |
</source> | </source> | ||
Line 19: | Line 19: | ||
==See Also== | ==See Also== | ||
*[[ResetCaption]] | *[[ResetCaption]] | ||
+ | *[[DisguiseClient]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] |
Latest revision as of 11:42, 4 April 2012
Definition
procedure Disguise(const Str: string);
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.