TMSFNCRichEditor word-wrap issue

Hello,

we install your lastest version v4.1.0.2 and thought that the word-wrap issue from is allready fixed. But it's still there. We tried a simple project which the TMSFNCRichEditor gets the Text from a TMemo via .InsertText.

If you write 2 lines in the memo, it will be displayed strangely in the TMSFNCRichEditor (see attached picture). In that example i insert "First Line" in the first line and "Second Line" in the second line.

firstLine_secondLine

TTMSFNCRichEditor.InsertText expects single line text to insert.
If you want to add multi-line text, use TTMSFNCRichEditor.AddMultiLineText()

Example:

begin
  memo1.Lines.Clear;
  memo1.Lines.Add('First line');
  memo1.Lines.Add('Second line');
  TMSFNCRichEditor1.AddMultiLineText(memo1.Lines.Text);
end;

This works as expected.

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.