GcSpread.Sheets Namespace > Sheet type : endEdit Method |
true
, does not apply the edited text to the cell.
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: boolean value = instance.endEdit(ignoreValueChange);
function endEdit( ignoreValueChange : boolean ) : boolean;
true
, does not apply the edited text to the cell.true
when able to stop cell editing successfully; otherwise, false
.activeSheet.bind(GcSpread.Sheets.Events.EditChange, function (sender,args) { if (args.editingText === "123") { activeSheet.endEdit(true); } });