EplanningSoft 发表于 2019-8-12 18:59:34

FarPoint.Web.Spread中如何使用自定义函数


目前我们使用的 FarPoint.Web.Spread 使用的版本是v8.4
在FarPoint.Web.Spread中如何使用自定义函数?




dexteryao 发表于 2019-8-13 09:42:04

您好,请参考:
https://help.grapecity.com/spread/SpreadNet8/ASP2/webframe.html#spweb-formulacustomfunc.html

EplanningSoft 发表于 2019-8-14 18:16:06

本帖最后由 EplanningSoft 于 2019-8-14 18:17 编辑

dexteryao 发表于 2019-8-13 09:42
您好,请参考:
https://help.grapecity.com/spread/SpreadNet8/ASP2/webframe.html#spweb-formulacustomf ...
按照示例中的方法,添加过后,单元格的自定义函数公式没有进行解析,不知道是不是有哪个地方用的不对?

FpSpread spread = new FpSpread();
spread.OpenExcel(stream);//json串在附件中,转换为内存流进行使用的
//添加自定义函数
DefaultSheetDataModel dataModel = spread.ActiveSheetView.DataModel as FarPoint.Web.Spread.Model.DefaultSheetDataModel;
if (dataModel != null)
{
    dataModel.AddCustomFunction(new FpFunctionInfo());
}

解析过后,得到的带有自定义函数的单元格内容仍是 #NAME?

dexteryao 发表于 2019-8-16 10:51:37

导入后再设置自定义公式没办法重新触发公式计算,只能把公式取出来,重新设置一遍,让触发计算。
页: [1]
查看完整版本: FarPoint.Web.Spread中如何使用自定义函数