Re: [iText-questions] RTF strange space between rows

2006-12-03 Thread Mark Hall
On Wednesday 29 November 2006 21:08, Alin Popa wrote: > I have a strange(?) problem regarding the space between rows from a RTF > document. I'm doing something like that: I think you wish to set the leading with para.setLeading(x). Greetings, Mark -- There are three infallible ways of pleasing an

Re: [iText-questions] RTF strange space between rows

2006-11-30 Thread Alin Popa
[iText-questions] RTF strange space between rows Hi guys, I have a strange(?) problem regarding the space between rows from a RTF document. I'm doing something like that: . Paragraph para=new Paragraph(); Chunk ch=new Chunk("Text1"); para.add(ch); ch=new Chunk

[iText-questions] RTF strange space between rows

2006-11-29 Thread Alin Popa
Hi guys, I have a strange(?) problem regarding the space between rows from a RTF document. I'm doing something like that: . Paragraph para=new Paragraph(); Chunk ch=new Chunk("Text1"); para.add(ch); ch=new Chunk("Text2\n"); para.add(ch); ch=new Chunk("Text3"); para.add(ch); .