Excel-DNA函数未显示描述和参数信息

时间:2018-08-30 02:52:08

标签: c# excel-dna

我使用Excel-DNA创建了一个简单的UDF,如下所示:

  [ExcelFunction(Description = "Return something")]
    public static string ReturnSomething(string a, string b)
    {
        return a + " - " + b;
    }

当我转到Excel时,该功能有效,但未显示说明,也未显示所需的参数。如何让他们展示?

Image of my UDF

Image of an Excel built-in formula with parameters shown which is expected from my UDF

1 个答案:

答案 0 :(得分:2)

这是使用Excel-DNA构建的Excel中自定义功能的预期行为。该说明仅显示在Insert Function对话框中。

如果您希望对参数使用IntelliSense,则可以使用Excel-DNA IntelliSense库-https://github.com/Excel-DNA/IntelliSense

a

b