Opens an existing Job.
Syntax: |
---|
DlxApp.OpenJob(fileName) |
Parameters
Parameter | Description |
---|---|
fileName | Full name of the file (.clxjob) to open. If the name is omitted or if you specify an empty string, a dialog box appears where you can choose the file to open. |
Return Value
If the job has been opened correctly, it returns true. If an error occurs, it returns false.
Example
Copy code | |
---|---|
if (!DlxApp.OpenJob("Blinker.clxjob"))
{
throw new Error("An error occurred while opening the job.");
}
|