Quantcast
Channel: Aspose.Pdf Product Family
Viewing all articles
Browse latest Browse all 3131

All the checkboxes are not available through enumeration of Aspose.Pdf.Document.Form

$
0
0
I am trying to enumerate all the Fields (Textboxes, Checkboxes) in the attached PDF document. The "MARRIED (one income)" and "HEAD OF HOUSEHOLD" checkboxes under Filing Status Withholding Allowances are not available via the following code:

var pdfDoc = new Document(pdfFile);
foreach (Aspose.Pdf.InteractiveFeatures.Forms.Field field in pdfDoc.Form)
{
Console.WriteLine(field.FullName);
}

How do I access those two checkboxes?

Viewing all articles
Browse latest Browse all 3131

Trending Articles