Spread.Sheets Documentation
SheetNameChanging type
GC.Spread.Sheets.Events Namespace : SheetNameChanging type
Occurs when the user is changing the sheet name.
Example
//This example uses the SheetNameChanging 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.SheetNameChanging

See Also

Reference

GC.Spread.Sheets.Events Namespace