When RadRichTextBox.DocumentInheritsDefaultStyleSettings is set to true, lists in the document are exported to HTML with Verdana font, instead of with the font applied in the UI.
Workaround: Use modification of the document default styles ("Normal") instead of setting DocumentInheritsDefaultStyleSettings to true, e.g.:
this.radRichTextBox.Document.StyleRepository["Normal"].SpanProperties.FontFamily = new FontFamily("Segoe UI");
Hello,
We have reviewed the case with the latest version, and the product works as expected. Closing the issue. If you still encounter the problem, please provide updated details so we can re-investigate.
Regards,
Martin Ivanov
Progress Telerik
Unlock smarter data exploration in RadGridView with AI-powered features. Enable natural language queries and help users uncover insights faster.
Thanks for asking, I've modified the description. The proposed workaround is to explicitly set the desired font settings in the "Normal" style for the document, instead of using DocumentInheritsDefaultStyleSettings.
Can you elaborate on the "use modification of document default styles"?