Hi, I'm trying to get some specific signature data from a PDF (the page number). I'm iterating the form fields, but I'm unable to find what property / method contains the page number in which the signature is placed. Your help is much appreciated.
var pdfDoc = new PdfLoadedDocument(pdfStream);
var pdfForm = pdfDoc.Form;
if (pdfForm != null)
{
foreach (PdfLoadedField field in pdfForm.Fields)
{
if (field is PdfLoadedSignatureField signatureField)
{
// how to get the page number of this `signatureField`?
}
}
}