Call this function to get the full path to the Job's disk file.
Syntax: |
|---|
| DlxJob.GetFileName() |
Return Value
The full path to the Job's disk file. This string is empty if the job has not been saved or does not have a disk file associated with it.
Example
Copy code
|
|
|---|---|
var name = DlxApp.GetJob().GetFileName();
DlxApp.Trace(name);
|
|
