Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Security Namespace / PasswordMatches Enumeration

In This Topic
    PasswordMatches Enumeration
    In This Topic
    Defines the flags that describe a PDF's password protection status.

    See StandardSecurityHandler.PasswordMatches property for details.

    Syntax
    'Declaration
     
    Public Enum PasswordMatches 
       Inherits System.Enum
    public enum PasswordMatches : System.Enum 
    Members
    MemberDescription
    NoneThe document is not encrypted.
    OwnerPasswordEmptyThe document is encrypted with an empty Owner password.
    OwnerPasswordMatchThe password passed to the GrapeCity.Documents.Pdf.GcPdfDocument.Load or Load(Stream,String) method matches the document's Owner password.
    UserPasswordEmptyThe document is encrypted with an empty User password.
    UserPasswordMatchThe password passed to the GrapeCity.Documents.Pdf.GcPdfDocument.Load or Load(Stream,String) method matches the document's User password.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Pdf.Security.PasswordMatches

    See Also