var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.setActiveCell(row, col);
Parameters
- row
- The row index of the cell.
- col
- The column index of the cell.
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.setActiveCell(row, col);
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); });