I am using the following code to save an XLST document as a PDF.
Workbook wb = new Workbook(file);
wb.Save(output, SaveFormat.Pdf);
It works fine. The only concern is that when I open the PDF in Acrobat and look at the Font tab in the Properties dialog (File/Properties), every font listed is a CID font. This tends to cause us some processing issues. Saving the document as a PDF in Excel itself does not result in the CID fonts. Is there a way I can prevent this?