自定义公式的参数值,我们需要动态的传当前行的对象进入,而不能是字符串,我翻到2019年的帖子里,版主给的demo代码,里面一大堆的属性方法,文档里都没见过,
类似以下标色的:
actorialFunction.prototype.evaluate = function (context,x1,x2,x3,x4) { var context = arguments[0]; var referArguments = arguments[1]; var row = referArguments.getRow(); var column = referArguments.getColumn(); var RowCount = referArguments.getRowCount(); var arr = context.source.getSheet().getArray(row,column,RowCount,ColumnCount);
FactorialFunction.prototype.acceptsError = function () {// return true;// }FactorialFunction.prototype.acceptsReference = function () { return true;}FactorialFunction.prototype.isContextSensitive = function () { return true;}
哪里可有相关的api说明文档
|
|