PdfPermissionsInfo.IsOwner Property

Gets a value indicating whether full (owner) access to the document is allowed.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool IsOwner { get; }
VB
Public ReadOnly Property IsOwner As Boolean
	Get

Property Value

Type: Boolean
true if full (owner) access to the document is allowed; otherwise, false.

Remarks

Full (owner) access is allowed when:

  • An encrypted document is opened with its owner password
  • An unencrypted document is opened
  • A document is created from scratch

Owner access allows changing of document's passwords and access permissions.

Full access is not allowed when an encrypted document is opened with its user password. In such a case all allowed operations are specified by this PdfPermissionsInfo.

See Also