Difference between revisions of "AppPath"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function AppPath: AnsiString; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Returns the path to SCAR Div...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
function AppPath: AnsiString;
+
function AppPath: string;
 
</source>
 
</source>
  
Line 18: Line 18:
  
 
==See Also==
 
==See Also==
 +
*[[WorkspacePath]]
 
*[[IncludesPath]]
 
*[[IncludesPath]]
 
*[[LogsPath]]
 
*[[LogsPath]]
 
*[[FontsPath]]
 
*[[FontsPath]]
 
*[[ScreenPath]]
 
*[[ScreenPath]]
 +
*[[ScriptPath]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:File Functions]]
 
[[Category:File Functions]]

Latest revision as of 15:39, 4 April 2012

Definition

function AppPath: string;

Availability

SCAR Divi 3.00 > Current

Description

Returns the path to SCAR Divi's root folder.

Example

begin
  WriteLn(AppPath);
end.

See Also