Page 1 of 1

Identifying Signature form field

Posted: Tue Jan 19, 2021 1:03 pm
by denicol
Hi!
I'm using tag pdfunsignedsignaturefield in two or more elements in one report page and I need to identify each one is.
But when I export in PDF, the only property is key name with ]UnsignedSignature0, UnsignedSignature1. UnsignedSignature2, ...

Can I specify this key name or other property in export settings?
Thanks!

Re: Identifying Signature form field

Posted: Thu Jan 21, 2021 9:23 pm
by Lech Kulikowski
Hello,

We are use the following code:
string fieldName = string.Empty;
if (StiOptions.Export.Pdf.UseEditableFieldName) fieldName = seo.Component.Name;
if (StiOptions.Export.Pdf.UseEditableFieldAlias) fieldName = seo.Component.Alias;
if (StiOptions.Export.Pdf.UseEditableFieldTag) fieldName = seo.Component.TagValue as string;
if (string.IsNullOrEmpty(fieldName)) fieldName = string.Format("UnsignedSignature{0}", index);

you can set UseEditableFieldName, UseEditableFieldAlias or UseEditableFieldTag

Thank you.