Hello,
I'm trying to export to PDF. I am not able to export the euro symbol (€) to my document.
On the internet, and in the forum i can find this example:
//Create a new PDF true type font.
PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial", 12, FontStyle.Regular), true);
//Draw the Unicode text
page.Graphics.DrawString("€", font, PdfBrushes.Black, new PointF(10, 10));
However, this does not seem to work (syntax error).
I also see some examples where i need to copy the ttf file to my solution and take it as a stream from there, but i cannot imagine this is the way to go.
I'm using the latest Syncfusion version.
Kind regards.