Difference between revisions of "Disguise"

From SCAR Divi Manual
Jump to: navigation, search
(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...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
<func>procedure Disguise(const s: AnsiString);</func>
+
<source lang="scar" lines="false">
 +
procedure Disguise(const Str: string);
 +
</source>
  
 
==Availability==
 
==Availability==
Line 14: Line 16:
 
end.
 
end.
 
</source>
 
</source>
 +
 +
==See Also==
 +
*[[ResetCaption]]
 +
*[[DisguiseClient]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:GUI Functions]]
 
[[Category:GUI Functions]]

Latest revision as of 12: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.

See Also