IsPasswordProtected

IPresentationInfo.IsPasswordProtected property

Obtiene un valor que indica si una presentación enlazada está protegida por una contraseña para abrir.

public bool IsPasswordProtected { get; }

Ejemplos

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

Ver también