var instance; // Type: Events instance.EnterCell = function(sheet, sheetName, row, col) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- フォーカスが入るセルの行インデックス。
- col
- フォーカスが入るセルの列インデックス。
var instance; // Type: Events instance.EnterCell = function(sheet, sheetName, row, col) { };
activeSheet.bind(GC.Spread.Sheets.Events.EnterCell, function (e, info) { alert("Cell (" + info.row + ", " + info.col +")"); });