RE: [iText-questions] Text Overflow

2004-09-24 Thread Merlyn Mathias
nd in itextpdf.sf.net. See AcroFields.getFieldPositions() and the javadocs for ColumnText.   Best Regards, Paulo Soares From: Merlyn Mathias [mailto:[EMAIL PROTECTED] Sent: Friday, September 24, 2004 2:49 AMTo: Paulo Soares; [EMAIL PROTECTED]Subject: Re: [iText-questions] Text Overflow Hi,   Thank you so much for th

RE: [iText-questions] Text Overflow

2004-09-24 Thread Paulo Soares
ECTED] Sent: Friday, September 24, 2004 4:01 PMTo: Paulo Soares; [EMAIL PROTECTED]Subject: RE: [iText-questions] Text Overflow Hi Paulo,   I wrote the following code to do this.       float[] position = form.getFieldPositions(name);      float[] left = {position[1], posi

Re: [iText-questions] Text Overflow

2004-09-24 Thread Merlyn Mathias
e: You can get the field dimensions and use ColumnText to see if the text fits.Best Regards,Paulo Soares- Original Message - From: "Merlyn Mathias" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Thursday, September 23, 2004 20:52Subject: [iText-questions] Text Overf

RE: [iText-questions] Text Overflow

2004-09-24 Thread Paulo Soares
PROTECTED]Subject: Re: [iText-questions] Text Overflow Hi,   Thank you so much for the reply. I am new to itext and I could not find it on the web. It would be very helpful if you could send me an example of how to get the field dimensions from pdfstamper object and to use

Re: [iText-questions] Text Overflow

2004-09-23 Thread Paulo Soares
You can get the field dimensions and use ColumnText to see if the text fits. Best Regards, Paulo Soares - Original Message - From: "Merlyn Mathias" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 23, 2004 20:52 Subject: [iText-questions] Text

[iText-questions] Text Overflow

2004-09-23 Thread Merlyn Mathias
Hi, I have a multiple line text field in my PDF. The application reads the pdf and using PdfStamper, the data gets populated in the fields. I want to check whether the data fits into the field, if not I want to take the entire text to the end of the document. How do I detect overflow using pdfs