We have an app that, among other things, opens a pdf and auto fills in fields with data from the db. That all works fine.
Now there are some fields that require signatures. There could be one or more on a pdf.
How can we know how many fields require a signature?
How can we tell if a field has received some markings (I guess we can not ensure that it is a signature, but we would be glad to know that ink was applied to the field).
How can we count the number of fields that have been signed?
We have come across this combination of code:
pdfViewerControl.InkAdded += pdfViewer_InkAdded;
private void pdfViewer_InkAdded(object sender, InkAddedEventArgs args)
{ }
Thanks for looking at this!