Re: [iText-questions] ColumnText question

2007-01-10 Thread Bruno Lowagie
net2tech wrote: > How do I determine this size on the fly? I have the llx, lly, urx and ury > info, but how do I know when the text is truncated or when its being > wrapped? You say you are reading the book; have a look at p200-201. There you'll find a method to know if there's more text than you

Re: [iText-questions] ColumnText question

2007-01-10 Thread net2tech
net2tech wrote: > This works fine most of the time, but sometimes the text in the columntext > appears in the next line. I am assuming its being wrapped. How can I > explicitly tell ColumnText not to wrap text? Reduce the height of the rectangle defined with llx, lly, urx and ury and the text w

Re: [iText-questions] ColumnText question

2007-01-09 Thread Bruno Lowagie (iText)
net2tech wrote: > This works fine most of the time, but sometimes the text in the columntext > appears in the next line. I am assuming its being wrapped. How can I > explicitly tell ColumnText not to wrap text? Reduce the height of the rectangle defined with llx, lly, urx and ury and the text wil

[iText-questions] ColumnText question

2007-01-08 Thread net2tech
Hello, I am writing some text at specific coordinates using ColumnText. Here is the snippet of the code ... ... ColumnText ct = new ColumnText(under); ct.SetSimpleColumn(llx, lly, urx, ury, 0f, Element.ALIGN_RIGHT); ct.SpaceCharRatio = PdfWriter.NO_SPACE_CHAR_RATIO; //Don't know

Re: [iText-questions] ColumnText Question

2003-03-14 Thread Bruno
Quoting "Campanale, Rocco" <[EMAIL PROTECTED]>: > I am using iText version .96. > > I am using ColumnText to mimic a table, since I have some columns that have > data that can span multiple pages. > > I am able to output my text using the ColumnText.go() method. If I add a > PdfPTable using doc

[iText-questions] ColumnText Question

2003-03-13 Thread Campanale, Rocco
I am using iText version .96. I am using ColumnText to mimic a table, since I have some columns that have data that can span multiple pages. I am able to output my text using the ColumnText.go() method. If I add a PdfPTable using document.add(PdfPTable) after the columnText is completed writin