printStatus

Event called periodically while printing.
[event] printStatus([in] int nextPage, [in] int firstPage, [in] int lastPage)
This event is called before each page is spooled, and after the last page is spooled. It is typically used to update a print status dialog or similar.

The event will be called with the following arguments:

VB:
Private Sub viewer_printStatus(nextPage As Long, _ firstPage As Long, lastPage As Long) _ Handles viewer.printStatus If nextPage <= lastPage Then ' about to print [nextPage] Else ' all done printing End If End Sub