PPTX DOCX XLSX PDF ODP
Aspose.Slides  for C++
PPT

C++의 PPT에서 주석 및 주석 작성자 제거

서버 측 API를 사용하여 문서 파일에서 댓글과 작성자를 조작하는 고유한 C++ 앱을 빌드합니다.

C++를 통해 PPT에서 주석 제거

PPT 파일에서 주석을 제거하기 위해 기능이 풍부하고 강력하며 사용하기 쉬운 Aspose.Slides for C++ API를 사용합니다. C++ 플랫폼용 문서 조작 API.

PPT에서 주석 삭제 - C++


using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System::Drawing;

auto presentation = System::MakeObject<Presentation>(u"example.ppt");

// 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);

C++를 통해 PPT에서 주석을 제거하는 방법

  1. **Aspose.Slides for C++**를 설치합니다. 설치 를 참조하세요.

  2. 프레젠테이션 클래스의 인스턴스로 PPT 로드

  3. 로드된 PPT의 모든 작성자에 대해 반복

  4. 작성자의 모든 주석 제거

  5. 마지막에 모든 작성자 제거

기타 지원되는 주석 형식

C++를 사용하면 다음을 포함한 다른 형식에 쉽게 주석을 달 수 있습니다.