CheckWriteProtection
IProtectionManager.CheckWriteProtection method
确定演示文稿是否受密码保护以进行修改。
public bool CheckWriteProtection(string password)
范围 | 类型 | 描述 |
---|---|---|
password | String | 校验密码。 |
返回值
如果密码有效则为真;否则为假。
评论
- 在调用它之前,您应该检查
IsWriteProtected
属性方法。 2.当密码为null或为空时,该方法返回false。
例子
[C#]
using (var presentation = new Presentation(presentationFilePath))
{
var isWriteProtected = presentation.ProtectionManager.CheckWriteProtection("my_password");
}
也可以看看
- interface IProtectionManager
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides