Class PdfSecurityOptions
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class encapsulates the options to control the PDF document security options. The HtmlToPdfConverter class define a reference to an object of this type in PdfSecurityOptions property.
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfSecurityOptions
- Inheritance
-
PdfSecurityOptions
- Inherited Members
Constructors
PdfSecurityOptions()
public PdfSecurityOptions()
Properties
CanAssembleDocument
Can assemble the PDF document generated by the HTML to PDF converter (create bookmarks, thumbnail images or insert, rotate, delete pages). This property has effect when a 128 bit key is used.
public bool CanAssembleDocument { get; set; }
Property Value
CanCopyAccessibilityContent
Can copy the PDF document accessibility content of the PDF document generated by the HTML to PDF converter.
public bool CanCopyAccessibilityContent { get; set; }
Property Value
CanCopyContent
Can copy the content of the PDF document generated by the HTML to PDF converter.
public bool CanCopyContent { get; set; }
Property Value
CanEditAnnotations
Can edit the annotations of the PDF document generated by the HTML to PDF converter.
public bool CanEditAnnotations { get; set; }
Property Value
CanEditContent
Can edit the content of the PDF document generated by the HTML to PDF converter.
public bool CanEditContent { get; set; }
Property Value
CanFillFormFields
Can fill the form fields in the PDF document generated by the HTML to PDF converter. This property has effect when a 128 bit key is used. To disable form filling the CanEditContent and CanEditAnnotations must be set on false.
public bool CanFillFormFields { get; set; }
Property Value
CanPrint
Can print the PDF document generated by the HTML to PDF converter. When this property is set to false the printing of the PDF document is disabled in a PDF viewer.
public bool CanPrint { get; set; }
Property Value
CanPrintHighResolution
Can print the PDF document in high resolution the PDF document generated by the HTML to PDF converter. When this property is set to true the PDF document printed in high resolution.
public bool CanPrintHighResolution { get; set; }
Property Value
EncryptionAlgorithm
The encryption algorithm used to encrypt the PDF document generated by the HTML to PDF converter. The default algorithm is RC4.
public EncryptionAlgorithm EncryptionAlgorithm { get; set; }
Property Value
KeySize
The dimension of the encryption key in the PDF document generated by the HTML to PDF converter. By default a 128 bit key is used.
public EncryptionKeySize KeySize { get; set; }
Property Value
OwnerPassword
The password required to change permissions of the PDF document generated by the HTML to PDF converter, like printing or editing. If the OwnerPassword property is an empty string and the UserPassword is not empty, the OwnerPassword will be automatically assigned with the value from UserPassword and when the PDF document is opened in the viewer using the user password (which is also the owner password) all the operations like printing, copying, etc will be allowed.
public string OwnerPassword { get; set; }
Property Value
UserPassword
The password required to open the PDF document generated by the HTML to PDF converter. If the OwnerPassword property is an empty string and the UserPassword is not empty, the OwnerPassword will be automatically assigned with the value from UserPassword and when the PDF document is opened in the viewer using the user password (which is also the owner password) all the operations like printing, copying, etc will be allowed.
public string UserPassword { get; set; }