In iTextSharp is there a way to set ALL fields on a form to read only? Currently I'm setting each one individually which is a pain like...
formFields.SetFieldProperty( "Applicant.Phone", "setfflags", PdfFormField.FF_READ_ONLY, null );
formFields.SetFieldProperty( "Applicant.SSN", "setfflags", PdfFormField.FF_READ_ONLY, null );
etc.