Password
LoadOptions.Password property
Gets or sets the password for opening an encrypted document.
public string Password { get; set; }
Property Value
The password for opening an encrypted document.
Remarks
The password be null or empty string. The default value is null. If the content is not encrypted, set this to null or empty string.
Examples
Load a content protected with a password.
LoadOptions loadOptions = new LoadOptions
{
Password = "pwd123"
};
using (Watermarker watermarker = new Watermarker(@"D:\doc.vsdx", loadOptions))
{
// ...
}
See Also
- class LoadOptions
- namespace GroupDocs.Watermark.Options
- assembly GroupDocs.Watermark