How to print Indian Currency symbol in pdf?

657 Views Asked by At

I can show the symbol in a messagebox, but it will not display in a PdfPCell. I want to use the currency symbol in a billing system.

RegionInfo myRg = new RegionInfo("IN");

PdfPTable table = new PdfPTable(1);
PdfPCell n1 = new PdfPCell(new Phrase("Net Total " + myRg.CurrencySymbol + ": 200));

table.AddCell(n);
0

There are 0 best solutions below