I am printing a JTable with JTable.print(JTable.PrintMode printMode, MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintRequestAttributeSet attr, boolean interactive)
(see:
javadoc ).
Is there any way to change the font size the header and footer are displayed in, without resorting to setting up the print manually?
Possibly useful info:
In javax.swing.TablePrintable.java, headerFont is private (so I can't change it by subclassing) and depends on the private final variable HEADER_FONT_SIZE.
Thanks in advance.
Edited by: nsteinberg on Jun 19, 2008 11:54 AM