:: com :: sun :: star :: awt ::

interface XPrinterServer
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XPrinterServer
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
manages several printers on one machine.

Methods' Summary
getPrinterNames returns a list of all available printer names.  
createPrinter creates a new virtual printer.  
createInfoPrinter creates a new information printer.  
Methods' Details
getPrinterNames
sequence< string >
getPrinterNames();

Description
returns a list of all available printer names.
createPrinter
::com::sun::star::awt::XPrinter
createPrinter( [in] string  printerName );

Description
creates a new virtual printer.

You must call ::com::sun::star::awt::XPrinter::start to put the job into the printer spooler.

createInfoPrinter
::com::sun::star::awt::XInfoPrinter
createInfoPrinter( [in] string  printerName );

Description
creates a new information printer.

You can get all information from this printer, but the printer cannot really print.

Top of Page