Difference between revisions of "Status"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure Status(const s: AnsiString); </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Shows a given messa...")
 
 
Line 14: Line 14:
 
begin
 
begin
 
   Status('Hello world!');
 
   Status('Hello world!');
 +
  WriteLn(GetStatus);
 
end.
 
end.
 
</source>
 
</source>
 +
 +
Output:
 +
Hello World!
  
 
==See Also==
 
==See Also==

Latest revision as of 00:30, 28 June 2011

Definition

procedure Status(const s: AnsiString);

Availability

SCAR Divi 3.00 > Current

Description

Shows a given message s in SCAR Divi's status bar.

Example

begin
  Status('Hello world!');
  WriteLn(GetStatus);
end.

Output:

Hello World!

See Also