The new property came to replace the obsolete HtmlTags. Now the TextRenderType property is responsible for processing html tags, and not only. This property has three possible values:
Default – just text, without any tag transformations;
HtmlTags – applying html tags. Their list is rather limited: b, i, u, strike, br, sub, sup, img;
HtmlParagraph - allows you to adjust the line spacing, the first line indent and all the same tags as the HtmlTags;
Previously, the HtmlTags property allowed some HTML tags to be used in the TextObject. One of the available tags was the FONT tag. This tag is obsolete, and not all browsers adequately support it. Therefore, a new visualization handler was added, which allows you to use some CSS styles, in the style attribute of the span tag.
Now let's consider in more details the new modes of processing Html tags:
HtmlTags ...