PPT
DOCX
XLSX
PDF
ODP
PPTX
Usuń komentarze i autorów komentarzy z PPTX w C++
Twórz własne aplikacje C++ do manipulowania komentarzami i autorami w plikach dokumentów przy użyciu interfejsów API po stronie serwera.
Usuń komentarze z PPTX przez C++
Aby usunąć adnotacje z pliku PPTX, użyjemy Aspose.Slides for C++ API, które jest bogate w funkcje, wydajne i łatwe w użyciu API do manipulacji dokumentami dla platformy C++.
Usuń adnotacje z PPTX — C++
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System::Drawing;
auto presentation = System::MakeObject<Presentation>(u"example.pptx");
// Deletes all comments from the presentation
for (auto author : presentation->get_CommentAuthors())
{
author->get_Comments()->Clear();
}
// Deletes all authors
presentation->get_CommentAuthors()->Clear();
presentation->Save(u"example_out.pptx", SaveFormat::Pptx);
Jak usunąć komentarze z PPTX przez C++
Zainstaluj Aspose.Slides dla C++. Zobacz Instalacja .
Załaduj PPTX z instancją klasy Presentation
Iteruj przez wszystkich autorów załadowanego PPTX
Usuń wszystkie komentarze autora
Usuń wszystkich autorów na końcu