如何在 Excel 互操作中读取 Range.Top

发布于 2024-11-27 20:13:33 字数 454 浏览 0 评论 0原文

Excel Interop 库中的范围具有 LeftTop 属性。它们的类型为 Object,如 MSDN。尝试将结果转换为浮点数会出错。

代码:

var lastcell = sheet.Cells[row, 1] as Excel.Range;
var topOffset = (float)(lastcell.Top);

错误:

指定的演员阵容无效。

如何检索浮点数(或双精度数..)形式的值?

Range in the Excel Interop library has Left and Top properties. These are of type Object as stated on MSDN. Trying to cast the result to float gives an error.

Code:

var lastcell = sheet.Cells[row, 1] as Excel.Range;
var topOffset = (float)(lastcell.Top);

Error:

Specified cast is not valid.

How can I retrieve the value as a float (or double..)?

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

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

发布评论

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

评论(1

长安忆 2024-12-04 20:13:33

我相信结果是双精度而不是浮点数,所以:

var topOffset = (double)(lastcell.Top);

应该有效。

I beileve the results is a double rather than a float so:

var topOffset = (double)(lastcell.Top);

should work.

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