This event gets launched when a measurement routine's report finishes printing. This happens whenever these occur:
-
The Print button from the Report Window finishes printing.
-
The File | Printing | Report Window Print menu item finishes printing.
-
A PRINT command in a measurement routine finishes execution.
-
A measurement routine with automatic printing that is enabled from File | Printing | Report Window | Print Setup finishes printing the report.
Visual Basic |
---|
Public Event OnReportPrintEnd( _ ByVal PartProg As PartProgram, _ ByVal reportStatus As Boolean _ ) |
- PartProg
- An expression that evaluates to a PartProgram object. This is the measurement routine that the report is generated from.
- reportStatus
- Boolean value that tells the status of the measurement report. This returns True if the report started to print properly.
The OnReportPrintEnd event is also available from the PartProgram object.