删除作者的所有评论

OpenXML SDK


 string FilePath = @"..\..\..\..\Sample Files\";

string FileName = FilePath + "删除作者的所有评论.pptx";

string author = "Zeeshan Shafqat";

DeleteCommentsByAuthorInPresentation(FileName, author);

// 移除某个作者在幻灯片中的所有评论。

public static void DeleteCommentsByAuthorInPresentation(string fileName, string author)

{

if (String.IsNullOrEmpty(fileName) || String.IsNullOrEmpty(author))

    throw new ArgumentNullException("文件名或作者名为 NULL!");

using (PresentationDocument doc = PresentationDocument.Open(fileName, true))

{

    // 获取指定的评论作者。

    IEnumerable<CommentAuthor> commentAuthors =

        doc.PresentationPart.CommentAuthorsPart.CommentAuthorList.Elements<CommentAuthor>()

        .Where(e => e.Name.Value.Equals(author));

    // 遍历所有匹配的作者。

    foreach (CommentAuthor commentAuthor in commentAuthors)

    {

        UInt32Value authorId = commentAuthor.Id;

        // 遍历所有幻灯片并获取幻灯片部分。

        foreach (SlidePart slide in doc.PresentationPart.SlideParts)

        {

            SlideCommentsPart slideCommentsPart = slide.SlideCommentsPart;

            // 获取评论列表。

            if (slideCommentsPart != null && slide.SlideCommentsPart.CommentList != null)

            {

                IEnumerable<Comment> commentList =

                    slideCommentsPart.CommentList.Elements<Comment>().Where(e => e.AuthorId == authorId.Value);

                List<Comment> comments = new List<Comment>();

                comments = commentList.ToList<Comment>();

                foreach (Comment comm in comments)

                {

                    // 删除指定作者的所有评论。

                    slideCommentsPart.CommentList.RemoveChild<Comment>(comm);

                }

                // 如果 commentPart 没有现有评论。

                if (slideCommentsPart.CommentList.ChildElements.Count == 0)

                    // 删除这个部分。

                    slide.DeletePart(slideCommentsPart);

            }

        }

        // 从评论作者部分中删除评论作者。

        doc.PresentationPart.CommentAuthorsPart.CommentAuthorList.RemoveChild<CommentAuthor>(commentAuthor);

    }

}

}

Aspose.Slides


 string FilePath = @"..\..\..\..\Sample Files\";

string FileName = FilePath + "删除作者的所有评论.pptx";

string author = "MZ";

DeleteCommentsByAuthorInPresentation(FileName, author);

// 移除某个作者在幻灯片中的所有评论。

public static void DeleteCommentsByAuthorInPresentation(string fileName, string author)

{

    if (String.IsNullOrEmpty(fileName) || String.IsNullOrEmpty(author))

        throw new ArgumentNullException("文件名或作者名为 NULL!");

    //实例化一个表示 PPTX 文件的 PresentationEx 对象

    using (Presentation pres = new Presentation(fileName))

    {

      ICommentAuthor[] authors=  pres.CommentAuthors.FindByName(author);

      ICommentAuthor thisAuthor = authors[0];

      for (int i = thisAuthor.Comments.Count - 1; i >= 0;i-- )

      {

          thisAuthor.Comments.RemoveAt(i);

      }

      pres.Save(fileName, Aspose.Slides.Export.SaveFormat.Pptx);  

    }

}    

下载示例代码