Spire.Presentation8.1.1 のリリースを発表できることをうれしく思います。このリリースでは、コメントに返信する機能がサポートしました。また、生成された Excel でグラフのデータの null 値が0になる問題が修正されたなど既知の問題も修正されました。詳細は以下の内容を読んでください。 このリリースで行われた変更のリストは次のとおりです カテゴリー ID 説明 New feature SPIREPPT-2133 コメントに返信する機能がサポートしました。 Presentation ppt = new Presentation(); ICommentAuthor author = ppt.CommentAuthors.AddAuthor("E-iceblue", "comment"); ppt.Slides[0].AddComment(author, "Add comment", new System.Drawing.Point(18, 25), DateTime.Now); Comment comment = ppt.Slides[0].Comments[0]; if (!comment.IsReply) { comment.Reply(author, "Add Reply1", DateTime.Now); comment.Reply(author, "Add Reply2", DateTime.Now); } ppt.Slides[0].DeleteComment(author, "Add Reply1");…