system.util.getProjectName
This function is used in Python Scripting.
Description​
Returns the name of the project that is currently being run.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.util.getProjectName()
Parameters​
None
Returns​
String - The name of the currently running project.
Scope​
Gateway
Code Examples​
Example #1
# This code would display the name of the currently running project
system.gui.messageBox("You are running project: %s" % system.util.getProjectName())