Difference between revisions of "IncludesPath"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function IncludesPath: AnsiString; </source> ==Availability== SCAR Divi 3.25 > Current ==Description== This function returns t...")
 
 
(3 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 IncludesPath: AnsiString;
+
function IncludesPath: string;
 
</source>
 
</source>
  
Line 8: Line 8:
  
 
==Description==
 
==Description==
This function returns the path to the Includes folder in your workspace. This can be used by scripts to store logs in a centralized location with writing permissions.
+
This function returns the path to the Includes folder in your workspace. This can be used by scripts to load files from includes easily.
  
 
==Example==
 
==Example==
Line 18: Line 18:
  
 
==See Also==
 
==See Also==
 +
*[[WorkspacePath]]
 
*[[LogsPath]]
 
*[[LogsPath]]
 
*[[ScreenPath]]
 
*[[ScreenPath]]
 
*[[FontsPath]]
 
*[[FontsPath]]
 
*[[AppPath]]
 
*[[AppPath]]
 +
*[[ScriptPath]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:File Functions]]
 
[[Category:File Functions]]

Latest revision as of 15:38, 4 April 2012

Definition

function IncludesPath: string;

Availability

SCAR Divi 3.25 > Current

Description

This function returns the path to the Includes folder in your workspace. This can be used by scripts to load files from includes easily.

Example

begin
  WriteLn(IncludesPath);
end.

See Also