Spread.Sheets Documentation
SheetNameChanged type
GC.Spread.Sheets.Events Namespace : SheetNameChanged type
Occurs when the user has changed the sheet name.
Example
//This example uses the SheetNameChanged event.
// Use IE to see the console log text
spread.bind(GC.Spread.Sheets.Events.SheetNameChanging, function (sender, args) {
   console.log(args.oldValue);
});
spread.bind(GC.Spread.Sheets.Events.SheetNameChanged, function (sender, args) {
   console.log(args.newValue);
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.SheetNameChanged

See Also

Reference

GC.Spread.Sheets.Events Namespace