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

interface XPrintJobBroadcaster
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XPrintJobBroadcaster
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
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
OpenOffice 1.1.2

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