Sometimes you might wish to export PDF document with opening password, limited text copying and printing privilege. Unfortunately, Reporting Services does not support this possibility. However, you still can implement it using Aspose.Pdf for Reporting Services. Just add corresponding security parameters to report or report server, you would get secure PDF document with limited privilege.
Currently, Aspose.Pdf renderer support three security attributes:
1)
Parameter Name: OpenningPassword
Date Type: String
Values supported:
2)
Parameter Name: IsCopyingAllowed
Date Type: Bollean
Values supported: True, False (default)
3)
Parameter Name: IsPrintingAllowed
Date Type: Bollean
Values supported: True, False (default)
Example:
<Render>
…
<Extension Name="APPDF" Type=" Aspose.Pdf.ReportingServices.Renderer,Aspose.Pdf.ReportingServices ">
<Configuration>
< OpenningPassword >aspose</ OpenningPassword >
< IsCopyingAllowed >False</ IsCopyingAllowed >
< IsPrintingAllowed >False</ IsPrintingAllowed >
</Configuration>
</Extension>
</Render>