I can read the fields from a pdf using C# and iTextSharp. Any way to identify the format of a text field as well?
Asked
Active
Viewed 182 times
0
-
1what you select as format category and options in acrobat is written into the pdf as JavaScript code. Thus, to identify this, you need to parse the JavaScript code in the pdf associated with the field. – mkl Nov 02 '17 at 05:48
-
thanks @mkl. How to go about that. I tried accessing their 'AA', 'F' and 'JS' (PdfName) dictionaries but not sure what to do next. – Orijit Nov 02 '17 at 17:44