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!
Identifying Signature form field
-
- Posts: 7334
- Joined: Tue Mar 20, 2018 5:34 am
Re: Identifying Signature form field
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.
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.