Method to get the output directory of a Single Source Layout. This method is the equivalent of the function ssl_outputDir()
//Load the first SSL into the variable ssl var sslmngr = currentProject.SSLManager; for(var i = 1; i <= sslmngr.count; i++) { var ssl = sslmngr.item(i); break; } //Now get the output directory var dir = ssl.outputDir();
This method has no parameters.
Value | Meaning |
---|---|
string | The path of the directory the output is generated to |
null | The object is not an SSL object |