C# 插入文本框到PPT幻灯片
程序员文章站
2022-07-02 14:20:53
概述 在文本框中我们可以实现的操作有很多,如插入文字、图片、设置字体大小、颜色、文本框背景填充、边框设置等。下面的示例中,将介绍通过C# 在PPT幻灯片中插入幻灯片的方法。 示例中包含了以下要点: 插入文本到文本框 设置边框颜色、粗细 文本框背景色填充 设置文本框旋转 设置文本框阴影效果 使用工具: ......
概述
在文本框中我们可以实现的操作有很多,如插入文字、图片、设置字体大小、颜色、文本框背景填充、边框设置等。下面的示例中,将介绍通过c# 在ppt幻灯片中插入幻灯片的方法。
示例中包含了以下要点:
- 插入文本到文本框
- 设置边框颜色、粗细
- 文本框背景色填充
- 设置文本框旋转
- 设置文本框阴影效果
使用工具:free spire.presentation for .net 3.3(免费版)
注:安装后,注意在程序中添加引用spire.presentaton.dll(dll可在安装路径下的bin文件夹中获取)
c# 代码(供参考)
步骤 1 :初始化presentation类,加载测试文档
presentation presentation = new presentation(); presentation.loadfromfile("test.pptx");
步骤 2 :获取幻灯片
islide slide = presentation.slides[0];
步骤 3 :添加指定大小的文本框(shape)到幻灯片,并写入文本
iautoshape shape = slide.shapes.appendshape(shapetype.rectangle, new rectanglef(80, 50, 420, 350)); string textstring = "万有引力的发现,是17世纪自然科学最伟大的成果之一。" + "它把地面上的物体运动的规律和天体运动的规律统一了起来,对以后物理学和天文学的发展具有深远的影响。" + "它第一次揭示了自然界中一种基本相互作用的规律,在人类认识自然的历史上树立了一座里程碑。" + "牛顿的万有引力概念是所有科学中最实用的概念之一。牛顿认为万有引力是所有物质的基本特征,这成为大部分物理科学的理论基石。"; shape.appendtextframe(textstring);
步骤 4 :设置文本框边框样式、填充样式、阴影效果、旋转度等
//设置shape线条颜色和宽度 shape.line.filltype = fillformattype.solid; shape.line.width = 2; shape.line.solidfillcolor.color = color.white; //设置shape填充颜色为渐变色 shape.fill.filltype = spire.presentation.drawing.fillformattype.gradient; shape.fill.gradient.gradientshape = spire.presentation.drawing.gradientshapetype.linear; shape.fill.gradient.gradientstops.append(1f, knowncolors.lightgray); shape.fill.gradient.gradientstops.append(0, knowncolors.lightblue); //设置shape阴影 spire.presentation.drawing.outershadoweffect shadow = new spire.presentation.drawing.outershadoweffect(); shadow.blurradius = 20; shadow.direction = 30; shadow.distance = 8; shadow.colorformat.color = color.lightgray; shape.effectdag.outershadoweffect = shadow; //设置shape向右旋转5度(向左旋转设置数值为负即可) shape.rotation = 5;
步骤 5 :保存文档
presentation.savetofile("result.pptx", fileformat.pptx2010);
完成代码后,调试程序,生成文档。文本框添加效果如下图所示:
全部代码:
using spire.presentation; using spire.presentation.drawing; using system.drawing; namespace inserttextbox_ppt { class program { static void main(string[] args) { //实例化presentation类对象,加载文档并获取第一个幻灯片 presentation presentation = new presentation(); presentation.loadfromfile("test.pptx"); islide slide = presentation.slides[0]; //添加一个文本框(shape)到第一张幻灯片并添加文字。 iautoshape shape = slide.shapes.appendshape(shapetype.rectangle, new rectanglef(80, 50, 420, 350)); string textstring = "万有引力的发现,是17世纪自然科学最伟大的成果之一。" + "它把地面上的物体运动的规律和天体运动的规律统一了起来,对以后物理学和天文学的发展具有深远的影响。" + "它第一次揭示了自然界中一种基本相互作用的规律,在人类认识自然的历史上树立了一座里程碑。" + "牛顿的万有引力概念是所有科学中最实用的概念之一。牛顿认为万有引力是所有物质的基本特征,这成为大部分物理科学的理论基石。"; shape.appendtextframe(textstring); //设置shape线条颜色和宽度 shape.line.filltype = fillformattype.solid; shape.line.width = 2; shape.line.solidfillcolor.color = color.white; //设置shape填充颜色为渐变色 shape.fill.filltype = spire.presentation.drawing.fillformattype.gradient; shape.fill.gradient.gradientshape = spire.presentation.drawing.gradientshapetype.linear; shape.fill.gradient.gradientstops.append(1f, knowncolors.lightgray); shape.fill.gradient.gradientstops.append(0, knowncolors.lightblue); //设置shape阴影 spire.presentation.drawing.outershadoweffect shadow = new spire.presentation.drawing.outershadoweffect(); shadow.blurradius = 20; shadow.direction = 30; shadow.distance = 8; shadow.colorformat.color = color.lightgray; shape.effectdag.outershadoweffect = shadow; //设置shape向右旋转5度(向左旋转设置数值为负即可) shape.rotation = 5; //保存并打开文档 presentation.savetofile("result.pptx", fileformat.pptx2010); system.diagnostics.process.start("result.pptx"); } } }
(本文完)
转载请注明出处!
上一篇: 最课程站点使用手记