SpreadJS Documentation
OutlineColumnCheckStatusChanged Event
GC.Spread.Sheets Namespace > Events type : OutlineColumnCheckStatusChanged Event
The sheet that triggered the event.
The sheet's name.
The outline column's change row index.
The outline column's change col index.
The outline column's change status
Occurs when the outline column check status has changed.
Syntax
var instance; // Type: Events
instance.OutlineColumnCheckStatusChanged = function(sheet, sheetName, row, col, status) { };
OutlineColumnCheckStatusChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   row : number,
   col : number,
   status : boolean
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
row
The outline column's change row index.
col
The outline column's change col index.
status
The outline column's change status
Example
//Removing the sparkline causes a change.
activeSheet.bind(GC.Spread.Sheets.Events.OutlineColumnCheckStatusChanged, function (e, info) {
     console.log("status: " + info.status);
});
See Also

Reference

Events type