onPrintProgress
This callback returns a print job progress percentage while print a print job is active.
Related methods
Callback Parameters
pagenumtotalobject: an object withcurrentandtotalnumber properties wherecurrentis the number for the currently printing page andtotalthe total number of pages.
###Callback parameters None
Example:
RxCore.onPrintProgress.connect(function (pagenumtotal) {
console.log("printed ", pagenumtotal.current, "of ", pagenumtotal.total);
});