GcSpread.Sheets Namespace > Row type : locked Method |
true
to lock the cells in the row so the user cannot edit them.
var instance = new GcSpread.Sheets.Row(sheet, index, sheetArea); var returnValue; // Type: boolean returnValue = instance.locked(value);
function locked( value : boolean ) : boolean;
true
to lock the cells in the row so the user cannot edit them.true
if the cells in the row are locked; otherwise, false
.activeSheet.getRow(2).locked(false);