在C#裡面給PPT文檔實現添加註釋的代碼分享

來源:互聯網
上載者:User
平常開會或者做總結報告的時候我們通常都會用到PowerPoint簡報,我們可以在單個投影片或者全部投影片裡面添加註釋,這樣觀眾可以從注釋內容裡面擷取更多的相關資訊,需要的朋友可以參考下

平常開會或者做總結報告的時候我們通常都會用到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");    }  }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.