GcSpread.Sheets Namespace > Sheet type : removeCustomFunction Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: any value = instance.removeCustomFunction(name);
function removeCustomFunction( name : string ) : any;
// Add Custom function // Type =myfunc(1) // in a cell to see the result var fn = $.ce.createFunction("myfunc", function() { return 100; }, {minArg:0, maxArg:0}); spread.addCustomFunction(fn); //spread.removeCustomFunction("myfunc");