GcSpread.Sheets Namespace > Column type : locked Method |
true
to lock the cells in the column for editing.
var instance = new GcSpread.Sheets.Column(sheet, index, sheetArea); var returnValue; // Type: boolean returnValue = instance.locked(value);
function locked( value : boolean ) : boolean;
true
to lock the cells in the column for editing.true
if the cells in the column are locked; otherwise, false
.activeSheet.getColumn(3).locked(true);