Hi
hear is a other strange thing. If you work with html Bullet list, then are the singel Elements in the Bookmark list.
see the exampel Code
Pdf pdf1 = new Pdf();
pdf1.IsBookmarked = true;
Section sec1 = pdf1.Sections.Add();
Text desc;
//work but in Bookmarklist
desc = new Text("
- haha
- hihi
desc.TabStops = new TabStops();
desc.TabStops.Add(100);
desc.IsHtmlTagSupported = true;
desc.IsInList = false;
sec1.Paragraphs.Add(desc);
//work but in Bookmarklist
desc = new Text("
- haha
- hihi
desc.TabStops = new TabStops();
desc.TabStops.Add(100);
desc.IsHtmlTagSupported = true;
desc.IsInList = false;
sec1.Paragraphs.Add(desc);
// Save the resultant PDF document
pdf1.Save(@"Z:/pdftest/PureBullteMarkus.pdf");
System.Diagnostics.Process.Start(@"Z:/pdftest/PureBullteMarkus.pdf");