Message 1 of 1
API Adding RobotRtfView to Report with Greek Letter Support
Not applicable
11-18-2019
11:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I got a problem when adding a rtf file to my report, where I use some Greek letters (φ and σ). But after appending this rtf file to my report, the Greek letters become ? in the file. Is there any method to solve this issue? Below is my code.
RobotRtfView view = robApp.Project.ViewMngr.CreateRtfView();
string filePath = StabilityVerification(); // This is the rtf file with Greek letters I created.
view.LoadFromFile(filePath);
RobotPrintable printable = view.Printable;
printEngine.AddToReport(printable);