var instance; // Type: Events instance.OutlineColumnCheckStatusChanged = function(sheet, sheetName, row, col, status) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- アウトライン列の変更行インデックス。
- col
- アウトライン列の変更列インデックス。
- status
- アウトライン列の変更ステータス。
var instance; // Type: Events instance.OutlineColumnCheckStatusChanged = function(sheet, sheetName, row, col, status) { };
//スパークラインを削除すると変更が生じます。 activeSheet.bind(GC.Spread.Sheets.Events.OutlineColumnCheckStatusChanged, function (e, info) { console.log("status: " + info.status); });