I’m trying to protect a workbook using ProtectionType.All but the workbook is not protected. I can still change cell content.
Sample code:
var workbook = new Workbook();
workbook.Protect(ProtectionType.All, "Test");
workbook.Save(@"C:\Temp\AsposeCellTest.xlsx", Aspose.Cells.SaveFormat.Xlsx);