Mukesh
2016-05-04 10:38:58 UTC
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
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