欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

在C#里面给PPT文档添加注释的实现代码

时间:2021-01-27 10:41:52|栏目:.NET代码|点击:

平常开会或者做总结报告的时候我们通常都会用到PowerPoint演示文稿,我们可以在单个幻灯片或者全部幻灯片里面添加注释,这样观众可以从注释内容里面获取更多的相关信息。

有些朋友不清楚如何在幻灯片里面添加注释,下面我跟大家分享一下如何在C#里面为幻灯片添加注释。

在这里我使用了一个免费控件――Free Spire.Presentation,有兴趣的朋友可以下载使用。

需要添加的命名空间:

using Spire.Presentation;
using System.Drawing;

详细步骤和代码片段如下:

步骤1:新建一个Presentation对象,从系统里面加载Presentation文件。

Presentation presentation = new Presentation();
presentation.LoadFromFile("sample.pptx");

步骤2:调用CommentAuthorList.AddAuthor(author name, string initials) 方法来添加作者注释。

ICommentAuthor author = presentation.CommentAuthors.AddAuthor("E-iceblue", "comment:");

步骤3:调用Call presentation.Slides[].AddComment() 方法来给某一张特定幻灯片添加注解。注释的类包含很多信息,像添加注释的作者、添加注释的时间、添加注释的位置和注释的内容。

presentation.Slides[1].AddComment(author, "This part is pretty important. Please pay attention to it", new System.Drawing.PointF(42, 4), DateTime.Now);

步骤4:保存并重新打开Presentation演示文稿。

presentation.SaveToFile("PPTwithcomment.pptx", FileFormat.Pptx2010);
System.Diagnostics.Process.Start("PPTwithcomment.pptx");

效果图:

全部代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Spire.Presentation;
 
namespace PPTComment
{
  class Program
  {
    static void Main(string[] args)
    {
      //create PPT document and load file
      Presentation presentation = new Presentation();
      presentation.LoadFromFile("sample.pptx");
      //comment author
      ICommentAuthor author = presentation.CommentAuthors.AddAuthor("E-iceblue", "comment:");
      //add comment
      presentation.Slides[1].AddComment(author, "This part is pretty important. Please pay attention to it", new System.Drawing.PointF(42, 4), DateTime.Now);
      //save the document
      presentation.SaveToFile("PPTwithcomment.pptx", FileFormat.Pptx2010);
      System.Diagnostics.Process.Start("PPTwithcomment.pptx");
    }
  }
}

以上就是在C#里面给PPT文档添加注释的实现代码,需要的朋友可以参考一下。

上一篇:如何让C#、VB.NET实现复杂的二进制操作

栏    目:.NET代码

下一篇:C#中利用LINQ to XML与反射把任意类型的泛型集合转换成XML格式字符串的方法

本文标题:在C#里面给PPT文档添加注释的实现代码

本文地址:http://www.codeinn.net/misctech/52284.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有