Re: [iText-questions] Word wrap

2011-12-14 Thread John Page
I was able to solve this a with a workaround. I created two form fields, one above the other. "formfieldtop" and "formfieldbottom". Then I manage the line break in my JAVA code likeso: String valueString= getValueString(); if(valueString.length()>60){ int half = valueString.length()/2;

Re: [iText-questions] Word wrap text when interacting withPdfContentByte?

2009-10-10 Thread Paulo Soares
ColumnText. Paulo - Original Message - From: "Rob Olson" To: Sent: Sunday, October 11, 2009 1:47 AM Subject: [iText-questions] Word wrap text when interacting withPdfContentByte? I am trying to add a paragraph of text to an arbitrary location on a PDF page. I first tried to do this

Re: [iText-questions] Word wrap

2006-09-07 Thread Frank Starsinic
CASE CLOSED. I was doing the encryption incorrectly in a different area of the app.FrankOn 9/7/06, bruno < [EMAIL PROTECTED]> wrote:Frank Starsinic wrote:> I have a one page PDF with many fields. A few of the fields can accept > multiple lines of text.> When the form is populated, however, the text

Re: [iText-questions] Word wrap

2006-09-07 Thread bruno
Frank Starsinic wrote: > I have a one page PDF with many fields. A few of the fields can accept > multiple lines of text. > When the form is populated, however, the text is vertically aligned in > the middle and extends beyond the end of the > of the form field boundries. Is there an iText sol

Re: [iText-questions] Word wrap on slash would be nice

2006-06-17 Thread Bruno Lowagie
David Thielen wrote: >So you would like 1/2 to be 1/ >2? > I think setting the '/' as split character is especially useful for chunks that contain a full URL. br, Bruno ___ iText-questions mailing list iText-questions@lists.sourceforge.net https://list

Re: [iText-questions] Word wrap on slash would be nice

2006-06-15 Thread David Thielen
So you would like 1/2 to be 1/ 2? - dave David Thielen www.windwardreports.com 303-499-2544 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Jay Gould Sent: Thursday, June 15, 2006 9:48 AM To: itext-questions@lists.sourceforge.net Subject: [iText-

Re: [iText-questions] Word wrap on slash would be nice

2006-06-15 Thread Bruno Lowagie
Brian Jay Gould wrote: >Word wrapping occurs on spaces and dashes, but it would be nice to also >wrap on slashes. Is this settable anywhere? > Read all about the SplitCharacter here: http://itextdocs.lowagie.com/tutorial/objects/chunk/index.html#endline br, Bruno __