GcSpread.Sheets Namespace > Sheet type : setIsProtected Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: any value = instance.setIsProtected(isProtected);
function setIsProtected( isProtected : boolean ) : any;
sheet.getCell(1,1).locked(false); sheet.setValue(1,1,"unLocked"); sheet.getColumn(3).locked(false); sheet.getRow(5).locked(false); sheet.setIsProtected(true);