Spread.Sheets
removeCustomFunction メソッド
GC.Spread.Sheets 名前空間 > Worksheet タイプ : removeCustomFunction メソッド
カスタム関数名。
カスタム関数を削除します。
シンタックス
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any

// パラメータ
var fnName; //タイプ: string

value = instance.removeCustomFunction(fnName);
function removeCustomFunction( 
   fnName : string
) : any;

パラメータ

fnName
カスタム関数名。
使用例
次のサンプルコードは、removeCustomFunctionメソッドを使用します。
// 次のサンプルコードは、removeCustomFunctionメソッドを使用します。// カスタム関数を追加します。// セルに=myfunc(1) // と入力し、結果を表示します。 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");
// 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");
関連トピック

参照

Worksheet タイプ