I would like to use data from a form and add to my pdf template. I use the following for textfields…
PdfStamper formFiller = new PdfStamper(reader, ms);
AcroFields formFields = formFiller.AcroFields;
formFields.SetField("Name", formData.Name);
How do I check a checkbox?
I think this should do the trick: