GetDefaultDir Function | |
Return the current SetDefault() setting.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax Remarks
Return the current SetDefault() setting. The string ends with a trailing "\".
Examples
This example uses GetDefaultDir() to display the location of the error log file:
1FUNCTION Start()
2 ? GetDefaultDir()
3 SetDefault("c:\vo\prg")
4 ? GetDefaultDir()
See Also