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