Hi,
I am using the following code to convert a Word Document into a PDF. However, I am unable to access the editable text form fields in the PDF which existed in the Word Document. Please provide resolution to this issue ASAP.
var readFile = new FileStream("DocumentName"), FileMode.Open, FileAccess.Read, FileShare.Read);
var wordDoc = new WordDocument(readFile);
var converter = new DocToPDFConverter();
var pdfDoc = converter.ConvertToPDF(wordDoc);
pdfDoc.Save(pdfFilePath);
Thanks in advance.