Re: [iText-questions] Problems with iText with Justified Text

2006-05-29 Thread bruno
Abhishek Srivastava wrote: Document doc = new Document(); PdfWriter pw = PdfWriter.GetInstance(doc, new FileStream(@"..\..\test3.pdf", FileMode.Create)); doc.Open(); string[] t = File.ReadAllLines(@"..\..\data.txt"); PdfContentByte cb = pw.DirectContent; ColumnText ct = new ColumnTex

RE: [iText-questions] Problems with iText with Justified Text

2006-05-29 Thread Abhishek Srivastava
> 1) I have created ColumnTexts and added the columntext objects to > the list as list items. But on doing so that text in the list items in > not justified. What is the way to have justified text in lists? > >> Aren't ListItem objects derived from Paragraph objects? >> Doesn't setting the

Re: [iText-questions] Problems with iText with Justified Text

2006-05-29 Thread bruno
Abhishek Srivastava wrote: 1) I have created ColumnTexts and added the columntext objects to the list as list items. But on doing so that text in the list items in not justified. What is the way to have justified text in lists? Aren't ListItem objects derived from Paragraph objects? Doe

[iText-questions] Problems with iText with Justified Text

2006-05-29 Thread Abhishek Srivastava
Title: Problems with iText with Justified Text We are using iText to automatically generate letters. The each paragraph of the letter is having justified text. The letter also contains bulleted lists (each item of the bulleted list is justified). We are facing the following problems 1)