interface XPrintableBroadcaster in module com::sun::star::view::

(Global Index)

Syntax

interface XPrintableBroadcaster : com::sun::star::uno::XInterface ;

Description

allows for getting information about a print job

XPrintableBroadcaster can be implemented by classes by implementing XPrintable . It allows for XPrintableListener to be set, so a user can be informed about the print progress.

See also

XPrintableListener

Method Summary

addPrintableListener adds an XPrintableListener to be informed about print progress

removePrintableListener removes an XPrintableListener

Method Details



addPrintableListener

Syntax

oneway void addPrintableListener (
com::sun::star::view::XPrintableListener xListener );

Description

adds an XPrintableListener to be informed about print progress


removePrintableListener

Syntax

oneway void removePrintableListener (
com::sun::star::view::XPrintableListener xListener );

Description

removes an XPrintableListener

Top of Page