PPTX
DOCX
XLSX
PDF
ODP
ODP
Usuń komentarze i autorów komentarzy z ODP w Javie
Twórz własne aplikacje Java, aby manipulować komentarzami i autorami w plikach dokumentów za pomocą interfejsów API po stronie serwera.
Usuń komentarze z ODP przez Javę
Aby usunąć adnotacje z pliku ODP, użyjemy Aspose.Slides for Java API, które jest bogate w funkcje, wydajne i łatwe w użyciu API manipulacji dokumentami dla platformy Java.
Usuń adnotacje z ODP — Java
Presentation presentation = new Presentation("example.odp");
try {
// Deletes all comments from the presentation
for (ICommentAuthor author : presentation.getCommentAuthors())
{
author.getComments().clear();
}
// Deletes all authors
presentation.getCommentAuthors().clear();
presentation.save("example_out.pptx", SaveFormat.Pptx);
} finally {
if (presentation != null) presentation.dispose();
}
Jak usunąć komentarze z ODP przez Javę
Zainstaluj Aspose.Slides dla Javy. Zobacz Instalacja .
Załaduj ODP z instancją klasy Presentation
Iteruj przez wszystkich autorów załadowanego ODP
Usuń wszystkie komentarze autora
Usuń wszystkich autorów na końcu