ActiveReports.PdfExport Request technical support
PdfPermissions Enumeration
See Also  


An enumeration of values to specify the user permissions for the document. These values can be combined using a bitwise OR combination.

Syntax

Visual Basic (Declaration) 
Public Enum PdfPermissions 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As PdfPermissions
C# 
public enum PdfPermissions : Enum 

Members

MemberDescription
NoneAllows the user to read the PDF file, but not to modify it in any way. Value is 0.
AllowPrintAllows the user to print the PDF. Value is 4.
AllowModifyContentsAllows the user to modify the contents of the PDF. Value is 8.
AllowCopyAllows the user to copy from the PDF file. Value is 16.
AllowModifyAnnotationsAllows the user to modify annotations in the PDF. Value is 32.
AllowFillInAllows the user to fill in a PDF form. Value is 256. The PdfSecurity.Use128Bit property must be set to True for this setting to function.
AllowAccessibleReadersAllows the user to open the PDF in a variety of devices, including hand-held computers and screen readers.  Value is 512. The PdfSecurity.Use128Bit property must be set to True for this setting to function.
AllowAssemblyAllows insertion, deletion, or rotation of pages and creation of bookmarks and thumbnails even if AllowModifyContents hasn't been specified. Value is 1024. The PdfSecurity.Use128Bit property must be set to True for this setting to function.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         DataDynamics.ActiveReports.Export.Pdf.PdfPermissions

See Also