Hi,
We are utilising the following C# code to convert word files (docx and dotx) to PDF format with an aim to create fillable PDF forms.
Aspose.Words.Document wordDoc = new Aspose.Words.Document(sourceDoc.FilePath);
Aspose.Words.Saving.PdfSaveOptions options = new Aspose.Words.Saving.PdfSaveOptions();
options.PreserveFormFields = true;
wordDoc.Save(outputPdfPath, options);
However, the generated PDF documents are not preserving the form fields… we must be doing something wrong?
Form.pdf (21.9 KB)
docs.zip (37.6 KB)
Kind regards
Jay