Difference between revisions of "ScreenPath"
From SCAR Divi Manual
(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 ...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
− | < | + | <source lang="scar" lines="false"> |
+ | function ScreenPath: AnsiString; | ||
+ | </source> | ||
==Availability== | ==Availability== |
Revision as of 18:50, 26 June 2011
Definition
function ScreenPath: AnsiString;
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.