Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
Svetlin
Created on: 01 Aug 2012 02:12
Category:
Type: Bug Report
8
FIX. Setting the line spacing of RadRichTextBox's Paragraph causes, its wrapped lines to overlap each other.
The work around for this issue is to set the SpacingAfter property to 0 and LineSpacing property to 1:
RadDocument doc = provider.Import(RTF);
foreach (Paragraph p in doc.EnumerateChildrenOfType<Paragraph>())
{
p.LineSpacing = 1;
p.SpacingAfter = 0;
}
this.radRichTextBox1.Document = doc;
1 comment
Jesse Dyck
Posted on: 16 Dec 2012 12:01
The same thing is happening on the bulet list when load content from html (<li> element).