CheckWriteProtection

IProtectionManager.CheckWriteProtection method

确定演示文稿是否受密码保护以进行修改。

public bool CheckWriteProtection(string password)
范围类型描述
passwordString校验密码。

返回值

如果密码有效则为真;否则为假。

评论

  1. 在调用它之前,您应该检查IsWriteProtected属性方法。 2.当密码为null或为空时,该方法返回false。

例子

[C#]
using (var presentation = new Presentation(presentationFilePath))
{
    var isWriteProtected = presentation.ProtectionManager.CheckWriteProtection("my_password");
}

也可以看看