GC.Spread.Sheets 名前空間 > Worksheet タイプ : setActiveCell メソッド |
Javascript (Usage) | |
---|---|
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.setActiveCell(row, col, rowViewportIndex, colViewportIndex); |
Javascript (Specification) | |
---|---|
function setActiveCell( row : number, col : number, rowViewportIndex : number, colViewportIndex : number ) : any; |
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); });