Html tags being ignored

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

Hello Robby,

Thanks for considering Aspose.

Can you please try using the following code line to accomplish your requirement. You can change the font face information according to your requirement.

[C#]

Text testText = new Text(" MyRisk.Description </");

In case it does not resolve your problem or you've any further query, please feel free to share.