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
> 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
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
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)