IsWriteProtected

PresentationInfo.IsWriteProtected property

Получает значение, указывающее, защищена ли связанная презентация от записи.

public NullableBool IsWriteProtected { get; }

Примечания

Если презентация защищен паролем для открытия, значение свойства равно NotDefined.

Примеры

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

Смотрите также