Let's say I've loaded a PDF file using iTextSharp:
PdfStamper p = GetDocument(); AcroFields af = ps.AcroFields;
How do I get a list of all field names on the document from af?
af
AcroFields af = ps.AcroFields; foreach (var field in af.Fields) { Console.WriteLine("{0}, {1}", field.Key, field.Value); }
1.4m articles
1.4m replys
5 comments
57.0k users