如何在 Excel 互操作中读取 Range.Top
Excel Interop 库中的范围具有 Left
和 Top
属性。它们的类型为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信结果是双精度而不是浮点数,所以:
应该有效。
I beileve the results is a double rather than a float so:
should work.