if (page == PAGE_EXISTS) { //Seite ausgeben, Grafikkontext vorbereiten Graphics2D g2 = (Graphics2D)g; int ypos = (int)pf.getImageableY() + 10; int xpos = (int)pf.getImageableX() + 10; //Zeilen ausgeben g2.setColor(Color.black); g2.setFont(new Font("Monospaced", Font.PLAIN, 10)); g.drawString("Testausdruck", xpos, ypos); return Printable.PAGE_EXISTS;}return Printable.NO_SUCH_PAGE;
int ret = PAGE_EXISTS;if (ret == PAGE_EXISTS) { //Seite ausgeben, Grafikkontext vorbereiten Graphics2D g2 = (Graphics2D)g; int ypos = (int)pf.getImageableY() + 10; int xpos = (int)pf.getImageableX() + 10; //Zeilen ausgeben g2.setColor(Color.black); g2.setFont(new Font("Monospaced", Font.PLAIN, 10)); g.drawString("Testausdruck", xpos, ypos);}return ret;