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

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?

Hi Kishore,


Thanks for contacting support.

The checkboxes under label Filing Status Withholding Allowances is a group of checkboxes and the field name is S. You may consider using the following code snippet to Identifying form fields names