You are here: GdPicture.NET > Documentation > Structs, Records, Enums > Enumerations > PdfRight Enumeration
logo.gif
ContentsIndexHome
PreviousUpNext
PdfRight Enumeration
C#
public enum PdfRight {
  PdfRightUndefined = -1,
  PdfRightCanView = 0x0,
  PdfRightCanPrint = 0x4,
  PdfRightCanModify = 0x8,
  PdfRightCanCopy = 0x10,
  PdfRightCanAddNotes = 0x20,
  PdfRightCanFillFields = 0x100,
  PdfRightCanCopyAccess = 0x200,
  PdfRightCanAssemble = 0x400,
  PdfRightCanPrintFull = 0x800
}
Visual Basic
Public Enum PdfRight
  PdfRightUndefined = -1
  PdfRightCanView = &H0
  PdfRightCanPrint = &H4
  PdfRightCanModify = &H8
  PdfRightCanCopy = &H10
  PdfRightCanAddNotes = &H20
  PdfRightCanFillFields = &H100
  PdfRightCanCopyAccess = &H200
  PdfRightCanAssemble = &H400
  PdfRightCanPrintFull = &H800
End Enum

This is record PdfRight.

Members
Members 
Description 
PdfRightUndefined 
Do not use. 
PdfRightCanView 
Allows the user to view the document. Always available. 
PdfRightCanPrint 
Allows the user to print the document. 
PdfRightCanModify 
Allows the user to edit the document. 
PdfRightCanCopy 
Allows the user to copy text and graphics from the document. 
PdfRightCanAddNotes 
Allows the user to add annotations. 
PdfRightCanFillFields 
Allows the user to fill in form fields. Only works with 128-bit encryption. 
PdfRightCanCopyAccess 
Enables copying for use with accessibility features. Only works with 128-bit encryption. 
PdfRightCanAssemble 
Allows the user to assemble the document. Only works with 128-bit encryption. 
PdfRightCanPrintFull 
Allows high resolution printing of the document. Only works with 128-bit encryption. 
What do you think about this topic? Send feedback!
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.