[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.WriteProtection.WriteReserved

WriteReserved Property

WriteReserved

Indicates whether this workbook is write protected.

Declaration
public bool WriteReserved { get; }
Public ReadOnly Property WriteReserved As Boolean
Examples
WriteProtection protection = workbook.WriteProtection;
string password = GetPasswordFromSecureSource();
protection.WritePassword = password;
bool writeReserved = protection.WriteReserved;