0

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);
Don't Panic
  • 41,125
  • 10
  • 61
  • 80
  • i can show the symbol in messegebox but it will not display in pdfpcell.. Please help. i want to use the currency symbol in billing system. It will Print Dollar or Pound Symbol but not INR Symbol – Chandni Darji Mar 27 '15 at 08:25
  • 1
    You need a font with the currency glyph, helvetica (the default font) doesn't have it. Arial should work. – Paulo Soares Mar 27 '15 at 09:03

0 Answers0