Have a . docx with some fillable form fields which is converted to PDF. The fillable fields contain no information, but when convertering to PDF all the fillable form fields has the default text 'Click or tap here to enter text.
Is there a way to turn this off when convtering to PDF. using the following code snippet:
Aspose.Words.Saving.PdfSaveOptions options = new Aspose.Words.Saving.PdfSaveOptions();
options.Compliance = Aspose.Words.Saving.PdfCompliance.Pdf17;
options.ExportDocumentStructure = true;
options.OutlineOptions.HeadingsOutlineLevels = 3;
wordDoc.UpdateFields();
wordDoc.Save(dstFilename, options);
Please see attached .docx and resulting .PDF
EN to underskrifter_3bd7573e-611b-4c92-bbd9-f1fc0e692b72.docx (38.0 KB)
EN to underskrifter_3bd7573e-611b-4c92-bbd9-f1fc0e692b72.pdf (75.7 KB)