1、Spread Winform 9以下的版本中支持如图所示"SK.Folder.CUBE"的自定义函数名,但是新版本Spread Winform 11中添加该函数直接报错,显示为定义函数名无效,这个问题非常严重,导致Spead Winform没法升级,无法兼容以前的自定义函数,但是我们软件产品交给客户的自定义函数中中大量使用带路径名称的自定义函数名称
public class CubeFunctionInfo : FarPoint.CalcEngine.FunctionInfo
{
public override string Name { get { return "SK.Folder.CUBE"; } }
public override int MinArgs { get { return 1; } }
public override int MaxArgs { get { return 1; } }
public override object Evaluate (object[] args)
{
double num = FarPoint.CalcEngine.CalcConvert.ToDouble(args[0]);
return num * num * num;
}
}
FarPoint.Win.Spread.Model.ICustomFunctionSupport cfs;
cfs = (FarPoint.Win.Spread.Model.ICustomFunctionSupport)fpSpread1.ActiveSheet.Models.Data;
cfs.AddCustomFunction(new CubeFunctionInfo());
fpSpread1.ActiveSheet.SetFormula(1, 1, "CUBE(4)");
2、并且刚才查看Excel中存在类似我们定义函数名称中带点号路径的内置函数如图所示,
|
|