I set the font in "XamRichTextEditor_Loaded" to "Arial" Size "9".
private void XamRichTextEditor_Loaded(object sender, System.Windows.RoutedEventArgs e) { XamRichTextEditor rte = sender as XamRichTextEditor; CharacterSettings cs = new CharacterSettings(); cs.FontSize = new Extent(9, ExtentUnitType.Points); cs.Bold = false; cs.Italics = false; FontSettings fs = new FontSettings(); fs.Ascii = "Arial"; cs.FontSettings = fs; string error = "ERROR"; rte.Document.ApplyCharacterSettings(DocumentSpan.All, cs, out error); RtfBoxBody.Selection.Text = "Dies ä ist ö ein ü Test"; }Now in the RichTextBox is the Text "Dies ä ist ö ein ü Test". When I export the text to Outlook, it is displayed in "Arial" but the "ä, ö and ü" is displayed in "Curier".
7026.RtfTest.zip
Hello Andreas,
Thank you for sharing the sample. I am able to reproduce the issue you described. I am going to created a bug into our internal bug tracking system .
I created a private case C-00228399 to link with the bug. You can access the case through your infragistics acounts support section<https://account.infragistics.com/support-cases>
Let me know if you have further question or concern.