IsPasswordProtected

IPresentationInfo.IsPasswordProtected property

Obtient une valeur qui indique si une présentation liée est protégée par un mot de passe pour s’ouvrir.

public bool IsPasswordProtected { get; }

Exemples

[C#]
IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo(presentationFilePath);
if (info.IsPasswordProtected)
{
    Console.WriteLine("The presentation '" + presentationFilePath + "' is protected by a password to open.");
}

Voir également