GC.Spread.Sheets Namespace > Worksheet type : endEdit Method |
true
, does not apply the edited text to the cell.
var instance = new GC.Spread.Sheets.Worksheet(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(GC.Spread.Sheets.Events.EditChange, function (sender,args) { if (args.editingText === "123") { activeSheet.endEdit(true); } });