To add custom document properties in report exported to PDF you should use MetaTags of the report. The name of the tag should start from "pdf:". Next code shows how to add Meta Tags:
C#
report.MetaTags.Add(new StiMetaTag("pdf:PropertyName1", "Value1")); report.MetaTags.Add(new StiMetaTag("pdf:PropertyName2", "Value2"));
0 Comments