Posted by a ceTe Software moderator
Hello,
It is not possible to remove selected form fields from an existing PDF document. The remove method will remove the form field from the FormFieldList but not from the underlying PDF
If you want to remove all the fields from an existing PDF document, you can use MergeOptions class and set FormFields Boolean property to false. This will prevent the fields from getting imported
Dim options As MergeOptions = MergeOptions.All
options.FormFields = False
Dim NewDoc As MergeDocument = New MergeDocument("input.pdf", options)
NewDoc.Draw("output.pdf")
Thanks,
ceTe Software Support Team