Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf
- Classes
- Interfaces
- Enumerations
- HtmlToPdfAutoFitMode Enumeration
- HtmlToPdfErrorCode Enumeration
- HtmlToPdfMode Enumeration
- HtmlToPdfTriggerMode Enumeration
- PageBreakMode Enumeration
- PdfActionType Enumeration
- PdfDestFitMode Enumeration
- PdfDocumentPermissions Enumeration
- PdfPageLayout Enumeration
- PdfPageMode Enumeration
- PdfPortfolioView Enumeration
- PdfStandard Enumeration
- PdfTextFieldMode Enumeration
- PdfViewerErrorCode Enumeration
- PdfViewerUIElement Enumeration
- SSLVerificationMode Enumeration
- Delegates
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
PdfDocumentPermissions Enumeration |
Specifies permissions for a PdfDocument.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace:
EO.Pdf
Assembly: EO.Pdf (in EO.Pdf.dll)
Syntax
public enum PdfDocumentPermissions
Members
Member Name | Description | Value |
---|---|---|
None | No permissions. | 0 |
Printing | Allows printing. | 4 |
ModifyingContents | Allows modifying page contents. | 8 |
CopyingContents | Allows copying page contents such as text and images. | 16 |
Commenting | Allows adding text annotation. | 32 |
FillingFormFields | Allows filling in form fields. | 256 |
CopyingContentsForAccessibility | Allows copying page contents such as text and images for in support of accessibility to users with disabilities. | 512 |
AssembingDocument | Allows inserting, rotating or deleting pages or bookmarks. | 1024 |
HighQualityPrinting | Allows printing high quality output. Without this flag printing is limited to a low-level representation of the appearance, possibly of degraded quality. | 2048 |
All | Allow all permissions. | 3900 |
See Also