Search Results for

    Show / Hide Table of Contents

    Class DocumentPermissions

    Inheritance
    System.Object
    DocumentPermissions
    Namespace: PdfToSvg
    Assembly: IronPdf.dll
    Syntax
    public class DocumentPermissions : Object

    Every permission flag encoded in a PDF's security dictionary is surfaced through DocumentPermissions. When a PDF is protected by an owner password, the document's access rules travel with it, and this record exposes each rule as a readable bool property so application code can branch on what the current viewer is actually allowed to do before attempting an operation.

    DocumentPermissions lives on the PDF object returned by IronPDF's rendering pipeline. Rather than parsing low-level PDF encryption tables directly, you read the nine properties on this class and act accordingly. The nine members split cleanly into three functional groups:

    **Printing:** AllowPrintFullQuality indicates whether the document may be printed at full resolution. AllowPrintLowQuality covers degraded or draft-quality output, which some owners permit even when full-quality printing is locked.

    **Content extraction and accessibility:** AllowExtractContent controls whether text and graphics may be copied out of the document. AllowExtractAccessibility is the narrower carve-out that permits assistive technologies (screen readers, for example) to access content even when general extraction is denied.

    **Editing and interaction:** AllowAnnotations governs adding or modifying comments and form-field annotations. AllowFillForm covers interactive form completion without broader editing rights. AllowModifyContent reflects whether the page content stream itself may be altered. AllowAssembleDocument indicates whether pages may be inserted, rotated, deleted, or bookmarked.

    **Ownership:** HasOwnerPermission is true when the document was opened with the owner (full-control) password, meaning all restrictions are effectively lifted regardless of the other flags.

    Checking HasOwnerPermission first is the recommended pattern: if it is true, the remaining flags are moot. Otherwise, inspect the specific capability before invoking a corresponding IronPDF operation.

    using IronPdf;
    
    using var pdf = PdfDocument.FromFile("protected.pdf", ownerPassword: "secret");
    DocumentPermissions perms = pdf.SecuritySettings.Permissions;
    
    if (perms.HasOwnerPermission || perms.AllowExtractContent)
    {
        string text = pdf.ExtractAllText();
        Console.WriteLine(text);
    }
    else if (perms.AllowExtractAccessibility)
    {
        Console.WriteLine("Accessibility extraction only; full text copy is restricted.");
    }
    else
    {
        Console.WriteLine("Content extraction is not permitted by this document.");
    }

    For background on PDF security settings and how to apply permissions when creating documents, see the PDF security how-to, the PDF permissions example, and the IronPDF get-started guide.

    Properties

    AllowAnnotations

    Declaration
    public bool AllowAnnotations { get; }
    Property Value
    Type Description
    System.Boolean

    AllowAssembleDocument

    Declaration
    public bool AllowAssembleDocument { get; }
    Property Value
    Type Description
    System.Boolean

    AllowExtractAccessibility

    Declaration
    public bool AllowExtractAccessibility { get; }
    Property Value
    Type Description
    System.Boolean

    AllowExtractContent

    Declaration
    public bool AllowExtractContent { get; }
    Property Value
    Type Description
    System.Boolean

    AllowFillForm

    Declaration
    public bool AllowFillForm { get; }
    Property Value
    Type Description
    System.Boolean

    AllowModifyContent

    Declaration
    public bool AllowModifyContent { get; }
    Property Value
    Type Description
    System.Boolean

    AllowPrintFullQuality

    Declaration
    public bool AllowPrintFullQuality { get; }
    Property Value
    Type Description
    System.Boolean

    AllowPrintLowQuality

    Declaration
    public bool AllowPrintLowQuality { get; }
    Property Value
    Type Description
    System.Boolean

    HasOwnerPermission

    Declaration
    public bool HasOwnerPermission { get; }
    Property Value
    Type Description
    System.Boolean
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronPDF_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronPDF