:: com :: sun :: star :: view ::

interface XPrintJobBroadcaster
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XPrintJobBroadcaster
Description
allows for getting information about a print job.

XPrintJobBroadcaster can be implemented by classes which implement XPrintable . It allows a XPrintJobListener to be registered, thus a client object will learn about the print progress.

See also
XPrintJobListener
Since version
OpenOffice.org 1.1

Methods' Summary
addPrintJobListener adds an XPrintJobListener to be notified about print progress.
removePrintJobListener removes an XPrintJobListener .
Methods' Details
addPrintJobListener
[oneway] void
addPrintJobListener(
 
[in] XPrintJobListener
 
xListener );

Description
adds an XPrintJobListener to be notified about print progress.
removePrintJobListener
[oneway] void
removePrintJobListener(
 
[in] XPrintJobListener
 
xListener );

Description
removes an XPrintJobListener .
Top of Page