Hi,
We are evaluating Syncfusion Pdf for our Digital Pdf Signature project,
The scenario is:
I want to have 5 signature boxes, so each signer can sign on each signature box (either they draw directly or use saved signature image),
I try to add 5 signature fields into a pdf using codes below and it runs successfully but it only shows 1 signature box (see enclosed pdf)
What I missed in my C# codes? or Did I have misunderstanding with this?
And how to add a text (ie. for signer name) below each signature box?
for (int _i = 0; _i < 5; _i++)
{
signatureField.Bounds = new Syncfusion.Drawing.RectangleF(72+(_i*100), (float)(_hloadedLastPage * 0.7), 90, 30);
signatureField.ToolTip = "Signature";
signatureField.Required = true;
signatureField.BorderStyle = PdfBorderStyle.Solid;
//Add the form field to the document.
loadedDocument.Form.Fields.Add(signatureField);
// End Signature Field
}
Attachment:
file_8401058a.zip