Hi,
I want to create PDF document but all symbols used in document disappear after saving as PDF.
My code:
var document = new Document();
var section = document.AddSection();
var p = section.AddParagraph();
p.Text = "Symbol should be here:";
var s = p.AppendSymbol(254);
s.FontName = "Wingdings";
document.SaveToFile(@"c:\test.pdf", FileFormat.PDF);
document.SaveToFile(@"c:\test.docx", FileFormat.Docx);
document.Close();
Docx document is saved properly.
But unfortunately PDF document contains only "Symbol should be here:" without symbol i wanted.
I need to generate word and PDF documents with symbols.
What can I do to solve this problem ?