CheckWriteProtection

IProtectionManager.CheckWriteProtection method

Détermine si une présentation est un mot de passe protégé pour modifier.

public bool CheckWriteProtection(string password)
ParamètreTaperLa description
passwordStringLe mot de passe pour vérification.

Return_Value

Vrai si le mot de passe est valide ; sinon, faux.

Remarques

  1. Vous devriez vérifier leIsWriteProtected avant d’appeler cette méthode. 2. Lorsque le mot de passe est nul ou vide, cette méthode renvoie false.

Exemples

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

Voir également