Does anybody know how to export a PDF from Aspose.Words with user editable fields in the PDF?
Hi
Thanks for your inquiry. To achieve this, you just need specify PreserveFormFields property:
https://reference.aspose.com/words/net/aspose.words.saving/pdfsaveoptions/preserveformfields/
Here is simple code example:
Document doc = new Document("in.doc");
PdfSaveOptions opt = new PdfSaveOptions();
opt.PreserveFormFields = true;
doc.Save("out.pdf", opt);
Best regards,