I want to be able to use html when outputing to a table in a PDF file. This is code I used as a test with no luck. The tags were removed but the text wasn't bold. Any ideas?
Aspose.Pdf.Text testText = new Text("" + MyRisk.Description + "");
testText.IsHtmlTagSupported = true;
Aspose.Pdf.Cell MyCell = MyRow.Cells.Add();
MyCell.Paragraphs.Add(testText);