The following code and attachment produces a PDF which uses the symbol font for the table heading.
If I save it as a Doc it uses the correct font (Arial).
Please advise - thankyou!
string templateFile = @"template\Table headings come out symbol.doc";
Aspose.Words.License wordLicense = new Aspose.Words.License();
wordLicense.SetLicense("Aspose.Words.lic");
Document doc = new Document(templateFile);
doc.MailMerge.RemoveEmptyParagraphs = true;
DocumentBuilder builder = new DocumentBuilder(doc);
doc.Save("AsposeTest.pdf", SaveFormat.Pdf);