Hi
I'm using the next code to generate a simple pdf
RadFixedDocumentEditor editor = new RadFixedDocumentEditor(document)
editor.SectionProperties.PageSize = new Size(Unit.MmToDip(210), Unit.MmToDip(297));
editor.ParagraphProperties.HorizontalAlignment = HorizontalAlignment.Center;
editor.CharacterProperties.Font = FontsRepository.TimesRoman;
editor.InsertParagraph();
editor.InsertRun("Test è ò");
This issue is that the è and ò character are NOT printed at all.
Tnx ...