groupUndo

marks several actions so that they will be undone together

void groupUndo(function func);
funcfunctionthe actions that must be undone together

Example

$$("ssheet").groupUndo(function(){
  $$("ssheet").insertColumn(2);
  $$("ssheet").insertColumn(4);
});

Back to top