var instance; // Type: Events instance.ValueChanged = function(sheet, sheetName, row, col, oldValue, newValue) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- セルの行インデックス。
- col
- セルの列インデックス。
- oldValue
- セルの古い値。
- newValue
- セルの新しい値。
var instance; // Type: Events instance.ValueChanged = function(sheet, sheetName, row, col, oldValue, newValue) { };
activeSheet.bind(GC.Spread.Sheets.Events.ValueChanged, function (e, info) { alert("Value (" + info.newValue + ")"); });