[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PdfSecurityOptions

Class PdfSecurityOptions

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents the security settings of pdf.

public class PdfSecurityOptions
Inheritance
object
PdfSecurityOptions
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

PdfSecurityOptions()

public PdfSecurityOptions()

Properties

AssembleDocumentPermission

Permission to insert, rotate, or delete pages and create bookmarks or thumbnail images. The default value is true. If you want to prevent a user from inserting/rotating/deleting pages , you need to set ModifyDocumentPermission = false as well.

public bool AssembleDocumentPermission { get; set; }

Property Value

bool

ExtractContentPermission

Permission to copy or extract content. The default value is true.

public bool ExtractContentPermission { get; set; }

Property Value

bool

FillFormsPermission

Permission to fill the form fields. The default value is true. If you want to prevent a user from filling in interactive form fields, you need to set ModifyAnnotationsPermission = false as well.

public bool FillFormsPermission { get; set; }

Property Value

bool

FullQualityPrintPermission

Permission to print in high quality. The default value is true.

public bool FullQualityPrintPermission { get; set; }

Property Value

bool

ModifyAnnotationsPermission

Permission to modify text annotations and fill the form fields. The default value is true.

public bool ModifyAnnotationsPermission { get; set; }

Property Value

bool

ModifyDocumentPermission

Permission to modify pdf document. The default value is true.

public bool ModifyDocumentPermission { get; set; }

Property Value

bool

OwnerPassword

Gets or sets the owner password of the document.

public string OwnerPassword { get; set; }

Property Value

string

PrintPermission

Permission to print pdf document. The default value is true.

public bool PrintPermission { get; set; }

Property Value

bool

UserPassword

Gets or sets the user password.

public string UserPassword { get; set; }

Property Value

string