Hi, I have a similar need.
I have to add an empty signature field and then, with other library, I add to this field a signature from the smartcard.
Is it possible to add the empty field specifying to it must bu showed in all pages?
Ma code to add the empty field is simply:
Using editor As New FormEditor()
editor.BindPdf(“file.pdf”)
editor.AddField(FieldType.Signature, “Signature1”, 1, 360, 430, 480, 380)
editor.Save(“fileOut.pdf”)
End Using