Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have exported a report into PDF using GIOS.pdf. Report have contained currency symbol (¥0.00). After exporting report when I open the report I don’t see the currency symbol. I see as the symbol with replaced by ? Sign (?0.00)
How can I see actual symbol (¥) after exporting symbol??

Please help me

My exported Code is -
C#
PdfDocument myPdfDocument=new PdfDocument(PdfDocumentFormat.Letter_8_5x11_Horizontal);			

Font FontBold=new Font("Courier New",9,FontStyle.Bold);
PdfTextArea reportTest = new PdfTextArea(FontBold, Color.Black, new PdfArea(myPdfDocument, 50, 20, 750, 50), ContentAlignment.MiddleCenter, "testing Currency is ¥0.00 ");	
			
PdfPage newPdfPage=myPdfDocument.NewPage();
newPdfPage.Add(reportTest);
newPdfPage.SaveToDocument();
myPdfDocument.SaveToFile("Example3.pdf");
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900