| Prints the content of a Table.
Usage:
PrinterJob job = PrinterJob.getPrintJob();
PageFormat format = job.defaultPage();
Font f = new Font("Courier New", Font.PLAIN, 10);
TablePrinter printer = new TablePrinter(theTable, format, printerFont);
printer.startPrint();
The printout will be started in a separate thread on the default printer.
author: support@sql-workbench.et |