Quoting Jim Riley <[EMAIL PROTECTED]>: > I am new to Lowagie. I am trying create a PDF where I have 8 variables > in each record.
What Record? PDF doesn't have records. Are you talking about a Table/PdfPTable? > I can get all on one line but how would I get 4 on one > line and 4 on the next line? If you are talking about Table/PdfPTable, please read the tutorial. You can specify the number of columns in the constructor. If you just want to add a newline, there are several possibilities: - Use Paragraph instead of Chunk or Phrase - Use "\n" - Add Chunk.NEWLINE to your Phrase - ... Bruno ------------------------------------------------------- This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. The most comprehensive and flexible code editor you can use. Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. www.slickedit.com/sourceforge _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
