Hi,
I have read here that you need a Syncfusion.Pdf.Graphics.PdfTrueTypeFont in order to show a Euro sign in a Syncfusion.Pdf.Grid.PdfGrid.
I tried the next code but the application crashes when the last line is executed:
var FontPath = Path.GetFullPath("wwwroot\\Arial.TTF");
FileStream fontStream = new FileStream(FontPath, FileMode.Open, FileAccess.Read);
PdfTrueTypeFont FontRegular = new PdfTrueTypeFont(fontStream, 12, PdfFontStyle.Regular);
Do you have a sample to add a TrueType font in order to show Euro signs?
Best regards,
Vince