Spread.Sheets
EditorStatusChanged イベント
イベントを発生させたシート。
シートの名前。
エディタの変更前のステータス。
エディタの変更後のステータス。
エディタのステータスが変更されたときに発生します。
シンタックス
Javascript (Usage) 
var instance; // Type: Events
instance.EditorStatusChanged = function(sheet, sheetName, oldStatus, newStatus) { };
Javascript (Specification) 
EditorStatusChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   oldStatus : EditorStatus,
   newStatus : EditorStatus
) { };

パラメータ

sheet
イベントを発生させたシート。
sheetName
シートの名前。
oldStatus
エディタの変更前のステータス。
newStatus
エディタの変更後のステータス。
使用例
次のサンプルコードは、EditorStatusChangedイベントを使用します。
activeSheet.bind(GC.Spread.Sheets.Events.EditorStatusChanged, function (e, info) {    
        alert("Column (" + info.newStatus + ")");
});

関連トピック

参照

Events タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.