CheckWriteProtection
IPresentationInfo.CheckWriteProtection method
Vérifie si un mot de passe à modifier est correct pour une présentation protégée en écriture.
public bool CheckWriteProtection(string password)
Paramètre | Taper | La description |
---|---|---|
password | String | Le mot de passe à vérifier. |
Return_Value
Vrai si la présentation est protégée en écriture et que le mot de passe est correct. Faux sinon.
Exceptions
exception | condition |
---|---|
InvalidOperationException |
Remarques
- Vous devriez vérifier le
IsWriteProtected
avant d’appeler cette méthode. 2. Lorsque le mot de passe est nul ou vide, cette méthode renvoie false.
Exemples
[C#]
IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo(presentationFilePath);
if (info.IsWriteProtected == NullableBool.True)
{
bool isWriteProtectedByPassword = info.CheckWriteProtection("my_password");
}
Voir également
- interface IPresentationInfo
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides