[]
Indicates whether this workbook is write protected.
public bool WriteReserved { get; }
Public ReadOnly Property WriteReserved As Boolean
WriteProtection protection = workbook.WriteProtection;
string password = GetPasswordFromSecureSource();
protection.WritePassword = password;
bool writeReserved = protection.WriteReserved;