WorksheetFunction.CountA RuntimeBinderException 错误

发布于 2024-12-22 05:25:57 字数 407 浏览 0 评论 0原文

VSTO 新手,非常了解 Excel 的模型...我

using Excel = Microsoft.Office.Interop.Excel;

在班级的开头,以及以下简单的调用,它可以正确编译,甚至在智能感知中显示正确,

double usedRows = (double)Excel.WorksheetFunction.CountA(oWks.Columns[1]);

但在运行时失败并出现此异常

“Microsoft.Office.Interop.Excel.WorksheetFunction”不包含 “CountA”的定义

,我几乎找不到更多信息。我缺少什么?

New to VSTO, know Excel's model very well... I have

using Excel = Microsoft.Office.Interop.Excel;

at the head of my class, and the following simple call, which compiles correctly and even appears correct in intellisense

double usedRows = (double)Excel.WorksheetFunction.CountA(oWks.Columns[1]);

but fails at runtime with this exception

'Microsoft.Office.Interop.Excel.WorksheetFunction' does not contain a
definition for 'CountA'

about which I can find little further information. What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩一世无双 2024-12-29 05:25:57

CountA 需要引用您的 Excel 应用程序实例,而不是命名空间(我认为这是正确的术语)。

因此,假设您创建或获取了 Excel 的实例并将其命名为 oExcel 那么它是:

double usedRows = (double)oExcel.WorksheetFunction.CountA(oWks.Columns[1])

...虽然我不是 C 人,所以无法确认“(double)”部分是正确的。

CountA needs to reference your Excel application instance, not the namespace (I think that's the correct terminology).

So assuming you created or got and instance of Excel and called it oExcel then it's:

double usedRows = (double)oExcel.WorksheetFunction.CountA(oWks.Columns[1])

... although I'm not a C person, so can't confirm that the "(double)" part is correct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文