Pdf options

can the PdfSaveOption specify below options:

CanCopy (true/false)
CanModify (true/false)
CanPrint (true/false)
CanEdit (true/false)

Reason i’m asking this is that we are using activePDF right now which already have these options, and we are planning to use ASPOSE, so we need to check if this options are available. if not, will there be a default value for each option? if yes, how can we set it?

thanks
Hi,

Thanks for your interest in Aspose.Words. Sure, using the PdfSaveOptions.EncryptionDetails.Permissions property you can specify the operations that are allowed to a user on an encrypted PDF document. For example, you can use PdfPermissions.ContentCopy property to allow copying or otherwise extracting text and graphics from the document, including extraction for accessibility purposes. For more information, please refer to the following page:
http://aspose.com/docs/display/wordsnet/PdfPermissions+Enumeration

Best regards,

Hi Awaits, thanks for the reply, will check it out.