StandardSecurityOwnerPassword Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Owner password. The owner has all privileges, including changing the user password.

Namespace:  Apitron.PDF.Kit.Security
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public string OwnerPassword { get; set; }

Property Value

Type: String
Remarks

The owner password is required. Setting this to "" (an empty string) is valid but will allow anybody to change the security settings on the document.
Remarks

Examples

C#
FixedDocument document = new FixedDocument();
document.SecuritySettings = new StandardSecurity();
document.SecuritySettings.OwnerPassword = "topsecret";
See Also

Reference