GcSpread.Sheets Namespace > Cell type : locked Method |
true
to lock the cell.
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea); var returnValue; // Type: boolean returnValue = instance.locked(value);
function locked( value : boolean ) : boolean;
true
to lock the cell.true
if the cell is locked; otherwise, false
.activeSheet.getCell(1,1).locked(true);