Hi Gautam,
Thank you for your update
On further analyzation, C# consider ‘\n’ as a new line character. Based on that we have implemented the same in our SfRichTextEditor and new line added if the given input string contains ‘\n’. However, you can remove the character as we suggested in previous update. Please use the below code example to get this issue resolved.
|
string text = "The rich text editor \n component is WYSIWYG editor that provides the best user experience to create and update the content";
richtexteditor.Text = text.Replace("\n", ""); |
Please let us know if any further assistance required.
With Regards,
Gayathri R