我有几个来自数据库的公式和数据。我想通过 ExcelDna 以编程方式刷新所有公式。所有这些公式都是 ExcelFunctions,我已将 ExcelCommand name = "Refresh" 放在我想重新计算到 Excel 工作表的地方。
我使用以下,但它只刷新本机 excel 函数,例如 NOW()、SUM() 等。它不会在 ExcelDna 函数上调用刷新?
[ExcelCommand(MenuName="Refresh", MenuText="Refresh" )]
public static void GetPositionCommand()
{
XlCall.Excel(XlCall.xlcCalculateNow);
}
提前致谢...