Restrict number of PDF Prints

Hello,

I have a requirement to limit the number of times that a user can print a PDF document. I'm evaluating the FileFormat PDF component. Could you please let me know the possibility of this with the Syncfusion PDF component? 

ex: After the user prints the document twice, he should no more be possible to print it.

Regards,
Lakxman

1 Reply 1 reply marked as answer

SL Sowmiya Loganathan Syncfusion Team October 14, 2020 02:24 PM UTC

Hi Lakxman,   
  
Thank you for contacting Syncfusion support.   
  
We have analyzed your requirement and we do not have support to restrict number of PDF prints by count. However, we have only support for restrict printing of PDF document. Please refer the below code snippet for more details,  
  
PdfDocument document = new PdfDocument();  
    
//Document security  
PdfSecurity security = document.Security;  
security.OwnerPassword = "syncfusion";  
security.Permissions = ~(PdfPermissionsFlags.Print);  
  
  
  
Please let us know if you need any further assistance on this.   
  
Regards,  
Sowmiya Loganathan  
 


Marked as answer
Loader.
Up arrow icon