using latest words build v10 and pdf v5.3. have docx with content controls and need to save as pdf. documentation sates this is supported as of words v9.4. the pdfs are printed with text values of the content controls NOT the custom xml part values. Please help. following is the code used to save as pdf
Dim fs As FileStream = File.Create("ccDoc.docx")
streamWordDocCC.WriteTo(fs)
fs.Flush()
fs.Close()
Dim lo As Aspose.Words.LoadOptions = New Aspose.Words.LoadOptions()
lo.LoadFormat = Aspose.Words.LoadFormat.Docx
doc = New Aspose.Words.Document("ccDoc.docx", lo)
doc.Save("ccPdf.pdf", Aspose.Words.SaveFormat.Pdf)