IsPasswordProtected

IPresentationInfo.IsPasswordProtected property

Ruft einen Wert ab, der angibt, ob eine gebundene Präsentation zum Öffnen durch ein Kennwort geschützt ist.

public bool IsPasswordProtected { get; }

Beispiele

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

Siehe auch