PPTX
PPT
ODP
PDF
ODP
ODP
Remove Comments and Comment Authors from ODP in Java
Use Aspose.Slides for Java to remove comments and comment authors from presentation files.
Remove Comments from ODP via Java
Aspose.Slides for Java lets you remove comments and comment authors from ODP presentations. Load a file with the Presentation class, iterate through ICommentAuthor objects from getCommentAuthors, clear their comments, and save the updated presentation.
Delete Annotations from ODP - Java
Presentation presentation = new Presentation("presentation.odp");
try {
for (ICommentAuthor commentAuthor : presentation.getCommentAuthors())
{
commentAuthor.getComments().clear();
}
presentation.getCommentAuthors().clear();
presentation.save("cleaned-presentation.odp", SaveFormat.Odp);
} finally {
presentation.dispose();
}
How to Remove Comments from ODP via Java
Install Aspose.Slides for Java. See Installation .
Load the ODP file with the
Presentationclass.Iterate through the
ICommentAuthorobjects fromgetCommentAuthors.Clear each author’s comments with
getComments().clear().Clear the comment author collection and save the updated ODP file.