fires when a sheet is renamed
name | string | the old name of the sheet |
newName | string | the new name for the sheet |
$$("ssheet").attachEvent("onSheetRename", function(name, newName){
// some code here
console.log("Sheet " + name + " was renamed to " + newName);
});