Bullet List in Table Cell

How do I add a bullet list to a Table Cell in a Document? (Not using Pdf.Generator)

I tried this http://www.aspose.com/docs/display/pdfnet/Use+System+Defined+Bullets but it requires Pdf.Generator (and I thought that was deprecated?)

I’m using a Document to create a bunch of things. One of which is a table that I need to add a bulleted list to.

I’ve tried this but I can’t figure out how to style it like the rest of the PDF.

StringBuilder sbStrengthsHtml = new StringBuilder();
foreach (string strength in product.KeyStrengths)
{
	sbStrengthsHtml.AppendFormat("
{0}
", strength);
}
if (sbStrengthsHtml.Length > 0)
{
	sbStrengthsHtml.Insert(0, "
");
	sbStrengthsHtml.Append("
");
	keyCell.Paragraphs.Add(new HtmlFragment(sbStrengthsHtml.ToString()));
}

Hi Dirk,


Thanks for your inquiry. I am afraid currently Aspose.Pdf new generator does not support adding bullet list in PDF. However we have already logged a ticket PDFNEWNET-38422 for the purpose.

As a workaround you can use HTML text for the bullet lists that you have already figured out. We will appreciate it if you please confirm which bullet style you want to add, so we will look into it and guide you accordingly.

Best Regards,