Spread.Sheets
removeCustomFunction メソッド
カスタム関数名。
カスタム関数を削除します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any
value = instance.removeCustomFunction(name);
Javascript (Specification) 
function removeCustomFunction( 
   name : string
) : any;

パラメータ

name
カスタム関数名。
使用例
次のサンプルコードは、removeCustomFunctionメソッドを使用します。
// Add Custom function
// Type =myfunc(1)
// in a cell to see the result
function myfunc() {}
myfunc.prototype = new GC.Spread.CalcEngine.Functions.Function("myfunc", 0, 0, {name: "myfunc",description: "This is my first function"});
myfunc.prototype.evaluate = function (args) {
    return 100;
}
spread.addCustomFunction(new myfunc());
//spread.removeCustomFunction("myfunc");

関連トピック

参照

Workbook タイプ
カスタム数式の作成

 

 


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