Hi Support,
I use Aspose.Slides for .NET Version 14.3.0 (latest stable) , and it seems that I am unable to retrieve the comments from a PPT.
I read the article : Working with Slide Comments (https://docs.aspose.com/slides/net/presentation-comments/)
Here is a sample code :
var ppt = new Aspose.Slides.Presentation(“comments.ppt”);
var authors = ppt.CommentAuthors;
foreach (var author in authors)
{
foreach (var slide in ppt.Slides)
{
var comments = slide.GetSlideComments(author);
//Process comments
}
author.Comments.Clear();
}
The problem is that Presentation.CommentAuthors returns an empty collection, so I am unable to retrieve the comments.
Before it was possible to do this :
CommentCollection comments = slide.SlideComments;
slide.SlideComments does not exist anymore in 14.3.0. Is there any work around that I could use?
Thank you,
Lea.