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