var instance; // Type: Events instance.RowChanging = function(sheet, sheetName, row, sheetArea, propertyName) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- 行インデックス。
- sheetArea
- 行のシート領域。
- propertyName
- 変更された行のプロパティの名前。
var instance; // Type: Events instance.RowChanging = function(sheet, sheetName, row, sheetArea, propertyName) { };
//次のサンプルコードは、RowChangingイベントを使用します。 activeSheet.bind(GC.Spread.Sheets.Events.RowChanging, function (e, info) { alert("Row (" + info.row + ")"); });