All the changes made to the documents are made in memory, to make them persistent by transferring them to the file on the disk you must save the Job.
Syntax: |
---|
DlxJob.Save() |
Return Value
If the job is saved correctly it returns true, otherwise it returns false.
Remarks
If no file is associated with the Job, a dialog box appears in which the name of the file can be specified.
Example
Copy code | |
---|---|
if (DlxApp.GetJob().IsModified())
{
if (DlxApp.GetJob().Save())
DlxApp.Printf("Job saved.");
else DlxApp.Printf("An error occurred while saving the job.");
}
|