Hi,

I'm working on a PDF form now. It has text fields and checkboxes in it. Now
I'm able to read the fields and its values using the following code

using (var reader = new PdfReader(FormLocation))
                {
                    var fields = reader.AcroFields.Fields;

                    foreach (var key in fields.Keys)
                    {
                        var value = reader.AcroFields.GetField(key);
                        Response.Write(key + " : " + value);
                    }
                }

Is there any way I can read the tooltip text of each fields?

Thanks,
Mukesh



--
View this message in context: 
http://itext.2136553.n4.nabble.com/Reading-tooltip-text-from-acrofields-tp4661032.html
Sent from the iText mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to