SpreadJS製品ヘルプ
getCustomFunction メソッド
GC.Spread.Sheets 名前空間 > Worksheet タイプ : getCustomFunction メソッド
カスタム関数名。
カスタム関数を取得します。
シンタックス
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: Function
value = instance.getCustomFunction(fnName);
function getCustomFunction( 
   fnName : string
) : Function;

パラメータ

fnName
カスタム関数名。

戻り値の型

カスタム関数。
使用例
This example returns the specified custom function.
function FactorialFunction() {
    this.name = "FACTORIAL";
    this.maxArgs = 1;
    this.minArgs = 1;
}
FactorialFunction.prototype = new GC.Spread.CalcEngine.Functions.Function();
FactorialFunction.prototype.evaluate = function () {
    var result = 1, args = arguments;
    if (args.length === 1 && !isNaN(parseInt(args[0]))) {
        for (var i = 1; i < args[0]; i++) {
            result = i * result;
        }
        return result;
    }
    return "#VALUE!";
}

var factorial = new FactorialFunction();
activeSheet.addCustomFunction(factorial);
activeSheet.getCell(0,0).formula("factorial(5)");
var name = activeSheet.getCustomFunction("factorial");
alert(name);
関連トピック

参照

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