Create a new Job.
Syntax: |
---|
DlxApp.NewJob(name) |
Parameters
Parameter | Description |
---|---|
name | Name to assign to the Job. |
Return Value
If the Job is created correctly, it returns true. If an error occurs it returns false.
Example
Copy code | |
---|---|
if (!DlxApp.NewJob("Blinker"))
{
throw new Error("An error occurred while creating the Job.");
}
|