PPT
DOCX
XLSX
PDF
ODP
PPTX
C#의 PPTX에서 주석 및 주석 작성자 제거
서버 측 API를 사용하여 문서 파일에서 주석과 작성자를 조작하는 고유한 .NET 앱을 빌드합니다.
C#을 통해 PPTX에서 주석 제거
PPTX 파일에서 주석을 제거하기 위해 기능이 풍부하고 강력하며 사용하기 쉬운 Aspose.Slides for .NET API를 사용합니다. C# 플랫폼용 문서 조작 API.
PPTX에서 주석 삭제 - C#
using (Presentation presentation = new Presentation("example.pptx"))
{
// Deletes all comments from the presentation
foreach (var author in presentation.CommentAuthors)
{
author.Comments.Clear();
}
// Deletes all authors
presentation.CommentAuthors.Clear();
presentation.Save("example_out.pptx", SaveFormat.Pptx);
}
C#을 통해 PPTX에서 주석을 제거하는 방법
Aspose.Slides for .NET을 설치합니다. 설치 를 참조하세요.
Presentation 클래스의 인스턴스로 PPTX 로드
로드된 PPTX의 모든 작성자에 대해 반복
작성자의 모든 주석 제거
마지막에 모든 작성자 제거