GcSpread.Sheets Namespace > Sheet type : getActiveColumnIndex Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: number value = instance.getActiveColumnIndex();
function getActiveColumnIndex() : number;
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); });