ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Export.Pdf Assembly / GrapeCity.ActiveReports.Export.Pdf.Page Namespace / PdfPermissions Enumeration

In This Topic
    PdfPermissions Enumeration
    In This Topic
    Specifies the permissions available for a PDF document. These values can be combined using a bitwise OR combination.
    Syntax
    'Declaration
     
    Public Enum PdfPermissions 
       Inherits System.Enum
    public enum PdfPermissions : System.Enum 
    Members
    MemberDescription
    AllowAccessibleReadersSet to permit extracting the text and graphics of the document for accessibility purposes or otherwise (it is most likely for accessibility reasons, but possibly for other “screen reading” purposes) when it is opened with user access permission. This is revision 3 only permission.
    AllowAssemblySet to permit the following operations when the document is opened with user access permission:Insert, rotate, or delete pages, and create bookmarks or thumbnail images even if AllowModifyContents is false. This is revision 3 only permission.
    AllowCopySet to permit copying text or graphics from the document when it is opened with user access permission. This is a revision 2 permission.
    AllowFillInSet to permit filling in form fields in the document when it is opened with user access permission. This is revision 3 only permission.
    AllowModifyAnnotationsSet to permit adding or modifying annotations in the document when it is opened with user access permission. This permission is a revision 2 or revision 3 permission. Under revision three, the ability to copy/paste document contents is restricted other than what is specified by bit 10 (AllowAccessibleReaders).
    AllowModifyContentsSet to permit modifying the document’s contents when it is opened with user access permission. Text annotations can still be added or modified. This is a revision 2 permission.
    AllowPrintSet to permit printing the document when it is opened with user access permission. This is a revision 2 permission.
    DefaultThe default permissions.
    NoneYou can use this setting alone to specify that none of the other permissions are set. It has no effect if you bitwise or this flag together with the other flags.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.ActiveReports.Export.Pdf.Page.PdfPermissions

    See Also