Re: [iText-questions] Cell Alignment

2009-09-18 Thread Paulo Soares
Rewrite your post in a way that makes sense. Paulo -Original Message- From: Thilip Kumar S [mailto:thili...@suntecgroup.com] Sent: Friday, September 18, 2009 8:52 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Cell Alignment Hi Im trying to

Re: [iText-questions] Cell Alignment

2009-09-18 Thread Iliadis Yannis
Instead of using alignment on the cell level I'm using alignment of a paragraph. see the following code: PdfPTable tbl=new PdfPTable(3); PdfPCell cell1; PdfPCell cell2; PdfPCell cell3; Paragraph p; cell1=new PdfPCell(); cell2=new

Re: [iText-questions] Cell Alignment

2009-09-18 Thread mister bean
Kumar: Even with the suggested solution, your table is not going to work very well. For example, setWidths() does not work the way you're using it. Secondly, why are you using a command that sets the alignment for all cells to right, and then setting individual cells to right? I am fairly sure

Re: [iText-questions] cell alignment

2008-07-04 Thread 1T3XT info
[EMAIL PROTECTED] wrote: hallo all together i have a huge problem! Your huge problem being unable to read the documentation? if i m adding paragraphs to a cell the aligment of align_middle isn't working. You are mixing 'text mode' with 'composite mode' in your code snippet. The first