Call this function to close the current Job.

syntaxSyntax:
DlxJob.Close()

Return Value

If the Job is closed correctly it returns true otherwise it returns false.

Remarks

If the job contains modified elements, a dialog box asks you to confirm the closing command and proposes saving the documents with changes.

Example

  Copy codeCopy code
if (!DlxApp.GetJob().Close())
{
  throw new Error("An error occurred while closing the job.");
}

See also

Job