Panasonic HMWIN User Manual page 277

Touch
Hide thumbs Also See for HMWIN:
Table of Contents

Advertisement

pausePrinting
void pausePrinting();
Suspends printing operations. Will not suspend the print of a page already sent to the printer.
project.pausePrinting();
resumePrinting
void resumePrinting();
Resumes previously suspended printing.
project.resumePrinting();
abortPrinting
void abortPrinting();
Aborts current print operation and proceed with the next one in queue. This command will not abort the print
of a page already sent to the printer.
project.abortPrinting();
printStatus
project.printStatus;
Returns a string representing current printing status:
error: an error occurred during printing
printing: ongoing printing
idle: system is ready to accept new jobs
paused: printing has be suspended
var status = project.printStatus;
project.setTag("PrintStatus",status);
printGfxJobQueueSize
project.printGfxJobQueueSize;
Returns the number of graphic reports in queue for printing.
var gfxqueuesize = project.printGfxJobQueueSize;
project.setTag("printGfxJobQueueSize",gfxqueuesize);
printTextJobQueueSize
project.printTextJobQueueSize;
Returns the number of text reports in queue for printing.
var textjobqueuesize = project.printTextJobQueueSize;
ACGM0195V1EN
HMWIN Studio User Manual
277

Advertisement

Table of Contents
loading

Table of Contents