Page 1 of 1

Properties of generated PDF

Posted: Sat Jan 28, 2012 3:35 am
by yoyo
Hello.

It is possible to set some attributes to file properties. I thing, that generated PDF file can contains properties, that I set before generating.
For example settings of PDF file properties like Title, Author, Subject, Keyword etc...

Please, reply me, how I can set this.
Thank you.

Properties of generated PDF

Posted: Mon Jan 30, 2012 2:47 am
by HighAley
Hello.
yoyo wrote:It is possible to set some attributes to file properties. I thing, that generated PDF file can contains properties, that I set before generating.
For example settings of PDF file properties like Title, Author, Subject, Keyword etc...

Please, reply me, how I can set this.
To set PDF file properties you could use next report properties:

Code: Select all

Title - Report Name
Author - Report Author
Subject - Report Alias
Also you could set next properties for all exported PDF files

Code: Select all

Stimulsoft.Report.StiOptions.Export.Pdf.CreatorString
Stimulsoft.Report.StiOptions.Export.Pdf.KeywordsString
or use StiPdfExportSettings to set these properties for each report:

Code: Select all

Stimulsoft.Report.Export.StiPdfExportSettings.CreatorString
Stimulsoft.Report.Export.StiPdfExportSettings.KeywordsString
Thank you.