使用 OLE 获取焦点中的 Excel 工作表的 ID
使用 C++ 和 OLE,我如何获取当前焦点工作表的 ID?
例如,我有以下代码:
Variant excelSheets;
Variant excelSheet;
excelSheets.OleProcedure("Add");
excelSheet= excelSheets.OlePropertyGet("Item", 1);
我想添加一个工作表,然后获取刚刚添加的工作表,以便我可以添加内容。 仅当用户不将焦点从最左侧的工作表上移开时,上述代码才有效。
赛斯
Using C++ and OLE, how might I go about obtaining the ID of the worksheet that is currently in focus?
For example, I have the following code:
Variant excelSheets;
Variant excelSheet;
excelSheets.OleProcedure("Add");
excelSheet= excelSheets.OlePropertyGet("Item", 1);
I would like to add a sheet and then get the sheet that was just added so that I may add content. The above code only works if the user doesn't shift focus away from the sheet which is at the far left.
Seth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用了
OlePropertyGet( "ActiveSheet" );
因为当您添加工作表时,它会变成 ActiveSheet,您可以从那里使用它。 我在下面举了一个我所做的例子:I ended up using
OlePropertyGet( "ActiveSheet" );
because when you add a sheet it becomes the ActiveSheet and you can work with it from there. I put an example of what I did below: