GcSpread.Sheets Namespace > Sheet type : setActiveCell Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: any value = instance.setActiveCell(row, col, rowViewportIndex, colViewportIndex);
function setActiveCell( row : number, col : number, rowViewportIndex : number, colViewportIndex : number ) : any;
sheet.setActiveCell(5,5); alert(sheet.getActiveColumnIndex()); alert(sheet.getActiveRowIndex()); spread.bind(GcSpread.Sheets.Events.EnterCell, function (event, data) { alert(data.col); alert(data.row); }); spread.bind(GcSpread.Sheets.Events.LeaveCell, function (event, data) { alert(data.col); alert(data.row); });