Hi, I'm trying to export right-to-left string into PDF using your export component (Documents.Report). I'm adding a text field with text like 'abc 123' and the output appear as 'abc 321', while the abc part if in a right-to-left language (Hebrew). Is there a solution for this issue? does the PDF exporter supports rtl languages?
the code is very simple, something like band.AddText(), and text.AddContent(...)
Hi,
The Documents engine does not have full support for RightToLeft languages. There are certain cases that will not work, but they involve multi-byte characters and I don't think that's the case here.
What version of NetAdvantage are you using? What you describe here looks like a problem that was fixed a long time ago.
I'm using 2081 version (2012q1).
when was this issue resolved?
Hm, the issue I am thinking of was resolved long before the 2012 release, so my guess is that either the fix we implemented doesn't work in your case for some other reason or else it's just not supported by the current Documents engine.
Could you post a small sample project demonstrating the issue so we can check it out?
Attach a code section, with rtl text + number (like 'abc 123') which is written to pdf as 'abc 321')
Please advise. thanks!
_report = new Report();
string textToExport = "בדיקה 123 מה המצב";
Infragistics.Documents.Reports.Report.Section.ISection section = _report.AddSection();
Infragistics.Documents.Reports.Report.Band.IBand band = section.AddBand();
//add text content
Infragistics.Documents.Reports.Report.Text.IText text = band.AddText();
text.AddContent(textToExport);
string fileName = Path.GetTempFileName().Replace(".tmp", ".pdf");
_report.Publish(fileName, Infragistics.Documents.Reports.Report.FileFormat.PDF);
//to open the saved pdf file after export is done
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = fileName;
proc.Start();
As far as I know, nothing regarding Right-To-Left has changed as far as the Documentts (pdf/xps) engine is concerned.
Hi, any news on this issue? I could not find this product-idea anywhere, maybe I'm missing something...
Do you have better right-to-left support today?
Hello Eli,
I've submitted a Product Idea to our product development team on your behalf for this functionality. I've created a support case (CAS-114702-Q5G4N1) and provided more details through the case.
Ok, bad news, but thanks anyway!
Unfortunately, there are no currently-announced plans to support this. The WPF engine is the same one used by Windows Forms, so I don't believe that it's capabilities are any different.