Quoting Katharina Garbe <[EMAIL PROTECTED]>:

> aTable.addCell("2.2", new Point(2,2));
> aTable.addCell("3.3", new Point(3,3));
> aTable.addCell("2.1", new Point(2,1));
> aTable.addCell("1.3", new Point(1,3));
> 
> Is it possible to change the size of the numbers 2.2, 3.3 etc.

Phrase phrase = new Phrase("Some text in Courier size 20 color red",
FontFactory.getFont(FontFactory.COURIER, 20, Font.NORMAL, new Color(255, 0, 0)));
Cell myCell = new Cell(phrase);
aTable.addCell(myCell, new Point(2,2));

HTH,
Bruno


-------------------------------------------------------
This sf.net email is sponsored by: Dice - The leading online job board
for high-tech professionals. Search and apply for tech jobs today!
http://seeker.dice.com/seeker.epl?rel_code=31
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to