Feature request on pdf export

Stimulsoft Reports.NET discussion
Post Reply
Mpanal
Posts: 43
Joined: Thu Sep 07, 2006 11:28 am
Location: Spain

Feature request on pdf export

Post by Mpanal »


When I create editable fields and export the report to pdf, the filed names on pdf are field0, filed1, field2, and so on.

Is possible to controle this naming function?

Now, I can solve it with itextsharp, a free .net library for manipulate Pdf, but an integrated solution from the pdf generation solution will be better.

Thanks you
Ivan
Posts: 960
Joined: Thu Aug 10, 2006 1:37 am

Feature request on pdf export

Post by Ivan »

Hello,

In the next prerelease build the following static properties will be added:

StiOptions.Export.Pdf.UseEditableFieldName
StiOptions.Export.Pdf.UseEditableFieldAlias
StiOptions.Export.Pdf.UseEditableFieldTag

Now you can, for example, set the StiOptions.Export.Pdf.UseEditableFieldTag property to true, and then write in the Tag property following expression:

{"Editable field " + (sender as StiComponent).Name}

Thank you.
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

Feature request on pdf export

Post by Andrew »

Hello,

In the next prerelease build the following static properties will be added:

StiOptions.Export.Pdf.UseEditableFieldName
StiOptions.Export.Pdf.UseEditableFieldAlias
StiOptions.Export.Pdf.UseEditableFieldTag

Now you can, for example, set the StiOptions.Export.Pdf.UseEditableFieldTag property to true, and then write in the Tag property following expression:

{"Editable field " + (sender as StiComponent).Name}

Thank you.
Post Reply