Spread.Sheets
FloatingObjectRemoved イベント
GC.Spread.Sheets 名前空間 > Events タイプ : FloatingObjectRemoved イベント
イベントを発生させたシート。
シートの名前。
削除されたフローティングオブジェクト。
ユーザーがフローティングオブジェクトを削除した後に発生します。
シンタックス
var instance; // Type: Events
instance.FloatingObjectRemoved = function(sheet, sheetName, floatingObject) { };
FloatingObjectRemoved = function ( 
   sheet : Worksheet,
   sheetName : string,
   floatingObject : FloatingObject
) { };

パラメータ

sheet
イベントを発生させたシート。
sheetName
シートの名前。
floatingObject
削除されたフローティングオブジェクト。
使用例
次のサンプルコードは、FloatingObjectRemovedイベントを使用します。
// 次のサンプルコードは、FloatingObjectRemovedイベントを使用します。 var customFloatingObject = new GC.Spread.Sheets.FloatingObjects.FloatingObject("f1", 10, 10, 60, 64); var btn = document.createElement('button'); btn.style.width = "60px"; btn.style.height = "30px"; btn.innerText = "button"; customFloatingObject.content(btn); activeSheet.floatingObjects.add(customFloatingObject); activeSheet.bind(GC.Spread.Sheets.Events.FloatingObjectRemoved, function (e, info) { alert(info.sheetName); });
var customFloatingObject = new GC.Spread.Sheets.FloatingObjects.FloatingObject("f1", 10, 10, 60, 64);
var btn = document.createElement('button');
btn.style.width = "60px";
btn.style.height = "30px";
btn.innerText = "button";
customFloatingObject.content(btn);
activeSheet.floatingObjects.add(customFloatingObject);

activeSheet.bind(GC.Spread.Sheets.Events.FloatingObjectRemoved, function (e, info) {    
        alert(info.sheetName);
});
関連トピック

参照

Events タイプ