I am using Aspose pdf and trying to retrieve the form fields of file using below code :
AsposeLicenseRegistration.EnableAsposeLicense();
List fieldsToSkip = PersonalDetailsFields();
// Load an existing PDF file in Document object to read
Document Apdf = new Document(generatedPath);
Dictionary<string, string> GeneratedFileFormFields = new Dictionary<string, string>();
foreach (Field formField in Apdf.Form.Fields)
{
GeneratedFileFormFields.Add(formField.FullName, formField.Value);
}
but Fields are getting as zero.
Can you please help me to solve this issue , as it is working for another file .