Ok.
Is there a way to use the PdfHTMLTextElement? For example create multiple PdfHTMLTextElement with different fonts and concat them?
Something like this ways:
var richTextElement = new PdfHTMLTextElement(
htmlText, font, PdfBrushes.Green);
var richTextElement2 = n
ew PdfHTMLTextElement(htmlText, font, PdfBrushes.Black);
row2.Cells[1].Value = richTextElement + richTextElement2;