Re: [iText-questions] text alignment in ColumnText

2008-02-09 Thread bisoa
Mathias P.W Nilsson wrote: > > I think I solved it but this requires that I must set the height on each > cell. Maybe there is a way to align multiple cells to bottom without > defining height? > Generally working method is to use grids using tables. Divide pages into rows and coulmns. And add

Re: [iText-questions] text alignment in ColumnText

2008-02-09 Thread bisoa
Mathias P.W Nilsson wrote: > > I think I solved it but this requires that I must set the height on each > cell. Maybe there is a way to align multiple cells to bottom without > defining height? > Generally working method is to use grids using tables. Divide pages into rows and coulmns. And add

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread Mathias P.W Nilsson
I think I solved it but this requires that I must set the height on each cell. Maybe there is a way to align multiple cells to bottom without defining height? -- View this message in context: http://www.nabble.com/text-alignment-in-ColumnText-tp15353231p15358378.html Sent from the iText - Genera

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread 1T3XT info
Mathias P.W Nilsson schreef: > No I want to center content in the bottom and center. Thats it. I want an > bound and add text within that bound in at the bottom and center OK, then it's back to Paulo's answer. PdfPCell has a method setVerticalAlignment: http://itext.ugent.be/library/api/com/lowagi

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread Mathias P.W Nilsson
No I want to center content in the bottom and center. Thats it. I want an bound and add text within that bound in at the bottom and center -- View this message in context: http://www.nabble.com/text-alignment-in-ColumnText-tp15353231p15354747.html Sent from the iText - General mailing list archi

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread 1T3XT info
Mathias P.W Nilsson schreef: > I want all the text inside this columntext to be written from bottom to top. Do you mean you want to work with a negative leading? - This SF.net email is sponsored by: Microsoft Defy all challen

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread Mathias P.W Nilsson
Thanks! I have baught the book itext in action and created a PDFPTable. This is what I got so far. I'm using the pdfstamper getOverContent to add columns over an existing pdf. I create a ColumnText and set setSimpleColumn( 0 , 0 , 400 , 100 , 0 , Element.ALIGN_BOTTOM ) I want all the text insid

Re: [iText-questions] text alignment in ColumnText

2008-02-08 Thread Paulo Soares
That looks like a bottom aligned PdfPTable. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mathias P.W Nilsson > Sent: Friday, February 08, 2008 11:07 AM > To: itext-questions@lists.sourceforge.net > Subject: [

[iText-questions] text alignment in ColumnText

2008-02-08 Thread Mathias P.W Nilsson
Hi! Is it possible to align a text in a ColumnText? I can only get it to work if I set the alignment for a paragraph. I wan't to be able to align the text from bottom up. Let's say I have a columntext that is 400 heigh and I want the text to write from bottom and up. Can this be done? Can someon