Skip to main content

onPrintProgress

This callback returns a print job progress percentage while print a print job is active.

Callback Parameters

  • pagenumtotal object: an object with current and total number properties where current is the number for the currently printing page and total the total number of pages.

###Callback parameters None

Example:


RxCore.onPrintProgress.connect(function (pagenumtotal) {

console.log("printed ", pagenumtotal.current, "of ", pagenumtotal.total);


});