Spread.Sheets Documentation
bind Method
The event type.
Specifies additional data to pass along to the function.
Specifies the function to run when the event occurs.
Binds an event to the Workbook.
Syntax
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any
value = instance.bind(type, data, fn);
function bind( 
   type : string,
   data : Object,
   fn : Function
) : any;

Parameters

type
The event type.
data
Specifies additional data to pass along to the function.
fn
Specifies the function to run when the event occurs.
Example
This example binds events to functions.
sheet.setActiveCell(5,5);
alert(sheet.getActiveColumnIndex());
alert(sheet.getActiveRowIndex());
spread.bind(GC.Spread.Sheets.Events.EnterCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });
spread.bind(GC.Spread.Sheets.Events.LeaveCell, function (event, data) {
    alert(data.col);
    alert(data.row);
  });
See Also

Reference

Workbook type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.