C++ Word Automation 问题将工作簿中的图表或工作表导出到图像
我需要在 Word 中以编程方式插入图表作为图像。在能够执行此操作之前,我需要自动转换 Excel 工作簿的图表或工作表(仅包含图表)。我已经录制了一个宏,并且知道以下 VBA 代码正在执行此操作:
ActiveSheet.ChartObject(1).Chart.Export "C:\ path .......jpg"
另一种方法是使用 SaveAs() 但我没有找到示例代码。
在 C++ 中如何做到这一点?我找不到 C++ 的这个,
我真的很感激任何关于此事的帮助!
提前致谢。
克里斯
I need to insert a chart as an image programmatically in Word. Before being able to do that I need to convert a chart or a sheet (only containing a chart) of an excel workbook automatically. I've recorded a macro and got to know that following VBA code is doing that:
ActiveSheet.ChartObject(1).Chart.Export "C:\ path .......jpg"
Another way would be using SaveAs() but I found no sample code.
How can this be done in C++? I could not find this for C++
I would really appreciate any help on this matter!
Thanks in advance.
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您从 Word COM 库开始。请参阅http://support.microsoft.com/kb/178749/EN-US 以 Excel 为例。单词也是一样。
I suggest you start with the Word COM library. See http://support.microsoft.com/kb/178749/EN-US for an example on excel. it's the same for word.