程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> 在C#裡面給PPT添加注釋

在C#裡面給PPT添加注釋

編輯:C#基礎知識

平常開會或者做總結報告的時候我們通常都會用到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");
        }
    }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved