BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
ok, do you have this ExportData method working in .NET 4.6 or 4.7?
// Load the PDF document.
PdfLoadedDocument document = new PdfLoadedDocument("AcroformData.pdf");
// Get the form fields.
PdfLoadedForm form = document.Form;
// Export it to FDF.
MemoryStream memoryStream = new MemoryStream();
form.ExportData(memoryStream, DataFormat.Fdf, "AcroformData.pdf");
document.Close(); |