Add support for the background tag: html - CSS color vs. background-color vs. background? - Stack Overflow
The background property might contain an actual image (it is not locked to color values).
The image in the header is not exported to pdf.
Workaround: Use version R1 2022 where this is working.
Exception when there are merge fields in the header/footer and one performs mail merge:
Unable to cast object of type 'Telerik.Windows.Documents.Flow.Model.Header' to type 'Telerik.Windows.Documents.Flow.Model.BlockBase
Find and Replace document elements with special characters.
When inserting a section between two paragraphs the section parent is not correct.
Example:
Paragraph paragraph1 = editor.InsertParagraph(); Paragraph paragraph2 = editor.InsertParagraph(); editor.InsertSection(); Paragraph paragraph3 = editor.InsertParagraph();
Expected:
paragraph1.Parent == paragraph2.Parent
paragraph2.Parent != paragraph3.Parent
Actual:
paragraph1.Parent != paragraph2.Parent
paragraph2.Parent == paragraph3.Parent
Introduce support for min-height. Currently, this property is skipped.
As a possible workaround, the height property of the table row could be applied.