如何获取活动工作簿?
我试图在我的应用程序(VSTO)中获取工作簿,如下所示:
ExcelViewModel mb = new ViewModels.ExcelViewModel();
string NameBox = mb.Workbooks.First().Name;
因此,当 Excel 打开时,它已经具有默认工作簿:Book1.xlsx 我打开第二个工作簿(example.xlsx),但我的字符串 NameBox 返回“书1”。如何获取活动工作簿?对于我的示例,“example.xlsx”之一。
ExcelViewModel 只是返回所有工作簿的 ObservableCollection。
谢谢。
I'm trying to get the Workbook in my application(VSTO) like this :
ExcelViewModel mb = new ViewModels.ExcelViewModel();
string NameBox = mb.Workbooks.First().Name;
So when Excel open, it already have the default workbook : Book1.xlsx i open for example a second workbook(example.xlsx) but my string NameBox return the "Book1". How can i get the active Workbook? for my example the "example.xlsx" one.
The ExcelViewModel just return me an ObservableCollection of all Workbooks.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了:
I found it :