PDF Form Missing Fields

Hi,

I am trying to find all the fields in this PDF form, but I am only getting 76 entries under Document.Form.Fields. Pdf.Facades.Form.FieldNames is also only finding 76 fields. According to Foxit the PDF form has 109 fields.

Commercial Services Application Package.pdf (1.8 MB)

@oliver.c

I have worked with PDF file shared by you and have been able to reproduce the issue. A ticket with ID PDFNET-49775 has been created to further investigate and resolve the issue. This thread has been linked with the issue so that you may be notified once the issue will be addressed.

Has this issue been fixed? I’m seeing a similar issue using the JAVA library.

@douglasdallas
I will ask the developers to give information on this problem.

@douglasdallas
i got the following response
123.png (9.1 KB)

The number of annotations shown by Adobe Acrobat Pro and shown by the library was looked at.
Their number (124 pieces) coincided (see the attached picture). Is there a substitution of the concepts annotation and field?
Is it possible to see a screenshot of how the number of fields in the Foxit was determined?

Sorry, I seem unable to view the attachment?

@douglasdallas
Perhaps because you did not start the topic.
I’ll try to take this into account. Attached is a code snippet showing that the final value of num is 124

var doc = new Document(inputFileName);
int num = 0;
foreach (var page in doc.Pages)
    num += page.Annotations.Count;

Console.WriteLine(num);