Please enable JavaScript to view this site.

TIFF Image Printer

Description

The OnEndJob event occurs each time a file has completed printing.This event, along with OnStartJob, is useful for tracking the files printed.

The IPNJob object passed into the event handler contains information about the print job such as its print status, and conversion status among others.

The job object must be released using System.Runtime.InteropServices.Marshal.FinalReleaseComObject call at the end of the event handler before returning.

Syntax

objectName_OnEndJob(pJob)

where the IPNSession object is declared with events.

Parameters

IPNJob pJob

An IPNJob object representing the print job for the file.

See Also: OnCloseFile OnGetNextFileName OnOpenFile OnLogMessage OnReportError OnStartJob IPNJob