在Powerpoint幻灯片上使用Excel图表对象

时间:2014-04-29 08:42:16

标签: excel vsto powerpoint

我正在创建一个用于创建图表的PowerPoint加载项。我想知道我是否可以在我的插件中使用Excel图表而不是PowerPoint图表,因为两个图表看起来都相同并且具有相同的图表引擎。如果我可以,那么这样做的方法是什么?

1 个答案:

答案 0 :(得分:1)

有两种方式。

1. Create a chart in Excel and then use PasteSpecial to paste it in the PowerPoint slide 

2. Add an OLE object of Excel.Chart by using Shapes.AddOleObject method.

这两种方法都有优点和缺点。但这取决于你想做什么。