Difference between revisions of "ScreenPath"

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

Latest revision as of 15:39, 4 April 2012

Definition

function ScreenPath: string;

Availability

SCAR Divi 3.25 > Current

Description

This function returns the path to the Screenshots folder in your workspace. This can be used by scripts to store screenshots in a centralized location with writing permissions.

Example

begin
  WriteLn(ScreenPath);
end.

See Also