[iText-questions] Problem with different font-sizes in one paragraph

2009-10-05 Thread ceiphren
Hello everybody, I want to build paragraph-objects with a couple of chunks that have different font-sizes. for example: doc.open(); Paragraph p = new Paragraph(); Chunk c = new Chunk(We hate to write dummy-sentences. ); for(int i = 0; i 4; i++, p.add(c)); Chunk theProblem = new

Re: [iText-questions] PdfPTable in a PdfPCell with indentation

2009-04-29 Thread ceiphren
I tried many ways, but it seems that there is no way to change the indentation of a single PdfPTable unless using a paragraph. I know that I can use the padding of the cell, but then i will write 2 methods with the same content: one method for changing a single table via Paragraph-Indentation