Possible bug - List added to ListItem rendered incorrectly

"Sherwood Hu" <[email protected]> Wed, 10 Jun 2015 08:38:25 -0400
Newsgroups gmane.comp.java.lib.itext.general
Message-ID <[email protected]>
The code below (in .net) :

 

                PdfContentByte cb = writer.DirectContent;

                ColumnText ct = new ColumnText(cb);

                ct.Alignment = Element.ALIGN_JUSTIFIED;

                ct.SetSimpleColumn(72.0f, 72.0f, 8.5f * 72f - 72f, 11f * 72f
- 72f);

                

                List list = new List(List.ORDERED);

 

                ListItem item1 = new ListItem("item 1");

 

                List nested= new List(List.ORDERED, List.ALPHABETICAL);

                nested.Add(new ListItem("nested item 1"));

                nested.Add(new ListItem("nested item 2"));

                nested.Add(new ListItem("nested item 3"));

 

                Paragraph para = new Paragraph("paragraph1");

                para.IndentationLeft = 30;

                item1.Add(para);

                item1.Add(nested);

                list.Add(item1);

 

                 ct.AddElement(list);

                 ct.Go();

                

 

In the PDF rendered, block elements inside ListItem item1 are all rendered
inline. Format information are lost. 

 

The problem seems to exist  only on ColumnText. If rendered directly to
Document the rendering is correct.

------------------------------------------------------------------------------

_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: http://itextpdf.com/themes/keywords.php