.docx to PDF - How to get dynamic controls?

Hello,

We’re testing out this librarie VS others to save as PDF generated documents and noticed that our content controls don’t get transfered in PDF as editable fields. Example : A checkbox in our .docx is not as an editable field in the PDF version.

Is this something supported by Aspose.Words and we might just not be approaching it correctly ? Is the a documentation link that could help us out ?

Thanks for the help !

@sricher,

Please see these sample Word and PDF documents and try running the following code:

Document doc = new Document("C:\\Temp\\CheckBox.docx");
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.PreserveFormFields = true;
doc.Save("C:\\Temp\\word to.pdf", pdfSaveOptions);

Can you please also ZIP and upload your sample Word document containing the CheckBox control that you want to preserve (as an editable field) during rendering to PDF file? We will then investigate the scenario further on our end and provide you more information.