Declined
Last Updated: 20 Feb 2014 09:34 by ADMIN
ADMIN
Stefan
Created on: 03 Aug 2012 07:37
Category:
Type: Bug Report
1
FIX. RadRichTextBox - one should be able to set the LineSpacing to 0
foreach (Paragraph p in radRichTextBox1.Document.EnumerateChildrenOfType<Paragraph>()) { p.LineSpacing = 0; }

Comment: This is not an issue. RadRichTextBox behaves the same way as MS Word. You should set the SpacingAfter property to 0 in this case. The LineSpacing property determines the row height and the SpacingAfter one determines the spacing after the current paragraph. (e.g. when the user presses the Enter key)
0 comments