创建新的演示文稿

创建演示文稿

以下是两个代码示例,说明如何使用 VSTO 和 Aspose.Slides for .NET 来实现相同的目标。第一个示例是 VSTO第二个示例 使用了 Aspose.Slides。

VSTO 示例

VSTO 输出

todo:image_alt_text

//注意:PowerPoint 是一个命名空间,已经上面定义如下
//using PowerPoint = Microsoft.Office.Interop.PowerPoint;

//创建演示文稿
PowerPoint.Presentation pres = Globals.ThisAddIn.Application
	.Presentations.Add(Microsoft.Office.Core.MsoTriState.msoFalse);

//获取标题幻灯片布局
PowerPoint.CustomLayout layout = pres.SlideMaster.
	CustomLayouts[PowerPoint.PpSlideLayout.ppLayoutTitle];

//添加标题幻灯片
PowerPoint.Slide slide = pres.Slides.AddSlide(1, layout);

//设置标题文本
slide.Shapes.Title.TextFrame.TextRange.Text = "幻灯片标题";

//设置副标题文本
slide.Shapes[2].TextFrame.TextRange.Text = "幻灯片副标题";

//将输出写入磁盘
pres.SaveAs("c:\\outVSTO.ppt",
	PowerPoint.PpSaveAsFileType.ppSaveAsPresentation,
	Microsoft.Office.Core.MsoTriState.msoFalse);

Aspose.Slides for .NET 示例

Aspose.Slides 输出

todo:image_alt_text

//创建演示文稿
Presentation pres = new Presentation();

//添加标题幻灯片
ISlide slide = pres.Slides.AddEmptySlide(pres.LayoutSlides[0]);


//设置标题文本
((IAutoShape)slide.Shapes[0]).TextFrame.Text = "幻灯片标题";

//设置副标题文本
((IAutoShape)slide.Shapes[1]).TextFrame.Text = "幻灯片副标题";

//将输出写入磁盘
pres.Save("c:\\data\\outAsposeSlides.pptx", SaveFormat.Ppt);