1金币
最佳答案您好,请参考以下代码实现:
function hideRowFunction() {
this.typeName = "HIDEROW";
this.name = "HIDEROW";
this.maxArgs = 1;
this.minArgs = 1;
this.description = function () {
return {
description: "HIDESPECIFIEDROW",
};
};
}
// 继承内置 Function
hideRowFunction.prototype = new GC.Spread.CalcEngine.Functions.Function();
// 根据逻辑,重写 evaluate
hideR ...
| |
| |
| |