Interface PrintListener
public interface PrintListener
Listener interface that is used to listen to print events like print started
and print finished.
- Since:
- 1.6
-
Method Summary
Modifier and TypeMethodDescriptionvoidThis method gets executed after the print operation is finished and the layer states are restored for UI rendering.voidThis method gets executed before the print operation is started.
-
Method Details
-
printStarted
void printStarted()This method gets executed before the print operation is started. -
printFinished
void printFinished()This method gets executed after the print operation is finished and the layer states are restored for UI rendering.
-