Password
LoadOptions.Password property
获取或设置打开加密文档的密码。
public string Password { get; set; }
适当的价值
用于打开加密文档的密码。
评论
密码为 null 或空字符串。默认值为 null. 如果内容未加密,请将其设置为 null 或空字符串。
例子
加载受密码保护的内容。
LoadOptions loadOptions = new LoadOptions
{
Password = "pwd123"
};
using (Watermarker watermarker = new Watermarker(@"D:\doc.vsdx", loadOptions))
{
// ...
}
也可以看看
- class LoadOptions
- 命名空间 GroupDocs.Watermark.Options
- 部件 GroupDocs.Watermark