|
Syntax
- boolean start
(
- string nJobName,
- short nCopies,
- boolean nCollate )
- raises ( com::sun::star::awt::PrinterException , com::sun::star::lang::IllegalArgumentException );
Description
puts the job into the printer spooler.
This call may block the thread. So release all resources
(mutex, semaphore, etc.) before this call.
Syntax
- void end
();
- raises ( com::sun::star::awt::PrinterException );
Description
notifies the printer spooler that the job is done and printing
starts.
See also
- terminate
-
Syntax
- void terminate
();
Description
stops the current print job.
If the method XPrinter::end is called
beforehand, then this call does nothing. If you call
XPrinter::terminate in or before the call to
XPrinter::start ,
XPrinter::termnate returns false
.
This call must not block the thread.
See also
- end
-
Syntax
- com::sun::star::awt::XDevice startPage
();
- raises ( com::sun::star::awt::PrinterException );
Description
begins with a new page.
Syntax
- void endPage
();
- raises ( com::sun::star::awt::PrinterException );
Description
ends the current page.
|