Spread.Sheets Documentation
EditorStatusChanged Event
The sheet that triggered the event.
The sheet's name.
The old status of the editor.
The new status of the editor.
Occurs when the editor's status has changed.
Syntax
var instance; // Type: Events
instance.EditorStatusChanged = function(sheet, sheetName, oldStatus, newStatus) { };
EditorStatusChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   oldStatus : EditorStatus,
   newStatus : EditorStatus
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
oldStatus
The old status of the editor.
newStatus
The new status of the editor.
Example
This example uses the EditorStatusChanged event.
activeSheet.bind(GC.Spread.Sheets.Events.EditorStatusChanged, function (e, info) {    
        alert("Column (" + info.newStatus + ")");
});
See Also

Reference

Events type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.