GetProjectInfo
Acquires the project name and project folder path open in Epson RC+.
Syntax
GetProjectInfo ByRef projectName, ByRef projectFolderPath
Parameters
- projectName: Specify the string variable that gets the name of the currently opened project.
- projectFolderPath: Specify the string variable that gets the path of the project folder.
Description
Use this command to view information about the currently open project.
GetProjectInfo Example
String strName$
String strPath$
GetProjectInfo ByRef strName$, ByRef strPath$
Print "Project name = " + strName$
Print "Project folder path = " + strPath$