[]
Gets the write-reserved user name for the workbook.
This property returns the write-reserved user name stored in the workbook write protection settings.
public string WriteReservedBy { get; set; }
Public Property WriteReservedBy As String
WriteProtection protection = workbook.WriteProtection;
protection.WriteReservedBy = "User";
string userName = protection.WriteReservedBy;