If a document has runs with font size larger than the one set in the style of the paragraphs and this document is exported to HTML, the resulting paragraphs overlap.
Line spacing is not preserved when exporting RTF to HTML and the lines are exported with the default line spacing.
When a document has a list in it and the element containing it is cloned into another document, there is a key not found exception if you try to export the second document.
RadFlowDocument document = new RadFlowDocument();
if (tableDocument.Sections.First().Blocks.First() is Table workSheetTable)
{
Table clonedTable = workSheetTable.Clone(document);
var newSection = document.Sections.AddSection();
newSection.Blocks.Add(clonedTable);
}
byte[] pdfBytes = pdfProvider.Export(document);
byte[] docBytes = docxProvider.Export(document);
PdfFormatProvider: Table cells are exported with the wrong width when the table is nested in another table and the cells of the nested one have a preferred width set to 100%.
When the nested table has Width set in %, the value is calculated relative to the page, instead of relative to the parent table.
Workaround: Clear the cell PreferredWidth property.
Generate a document with the following approach: https://docs.telerik.com/devtools/document-processing/knowledge-base/populate-table-data-mail-merge
Before calling MailMerge, add two document variables with the editor: https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/concepts/fields/document-variables