C++ Word Automation 问题将工作簿中的图表或工作表导出到图像

发布于 2024-11-28 16:52:44 字数 320 浏览 1 评论 0原文

我需要在 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 技术交流群。

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

发布评论

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

评论(1

水晶透心 2024-12-05 16:52:44

我建议您从 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.

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