CheckPassword

IPresentationInfo.CheckPassword method

检查受开放密码保护的演示文稿的密码是否正确。

public bool CheckPassword(string password)
范围类型描述
passwordString要检查的密码。

返回值

如果演示文稿受开放密码保护并且密码正确,则为真,否则为假。

评论

当密码为空或为空时,该方法返回false。

例子

[C#]
IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo("pres.pptx");
bool isPasswordCorrect = info.CheckPassword("my_password");

也可以看看