Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 299 Bytes

Comments-Style-Protection.md

File metadata and controls

12 lines (9 loc) · 299 Bytes

Protection.jpg

var wb = new XLWorkbook();
var ws = wb.Worksheets.Add("Protection");

ws.Cell("A1").Comment.Style
  .Protection.SetLocked(false)
  .Protection.SetLockText(false);

wb.SaveAs("CommentsProtection.xlsx");