GroupDocs.Annotation for .NET은(는) PPTX 프레젠테이션에 주석을 달기 쉽게 합니다:
- Annotator 인스턴스로 PPTX를 엽니다.
- 필요한 주석을 생성하고 구성합니다.
- 프레젠테이션에 주석을 추가합니다.
- 주석이 달린 PPTX를 저장합니다.
GroupDocs.Annotation for .NET은(는) PPTX 프레젠테이션에 주석을 달기 쉽게 합니다:
// PPTX 프레젠테이션에 주석 달기
// Annotator 인스턴스로 PPTX를 엽니다
using (Annotator annotator = new Annotator("input.pptx"))
{
// 영역 주석을 생성합니다
AreaAnnotation area = new AreaAnnotation
{
Box = new Rectangle(100, 100, 200, 80),
BackgroundColor = 65535,
PageNumber = 0,
Message = "Important"
};
// 주석을 추가합니다
annotator.Add(area);
// 주석이 달린 PPTX를 저장합니다
annotator.Save("annotated.pptx");
}
PowerPoint 프레젠테이션에 모든 주석 유형을 추가하고 간단한 API로 관리합니다.

PPTX 파일에서 텍스트를 강조, 밑줄, 취소선 또는 교체합니다.
PPTX 슬라이드에 도형을 그리고 워터마크 또는 이미지를 찍어 넣습니다.
PPTX 주석을 가져오고, 제거하고, 가져오며, 내보냅니다.
// 주석이 달린 PPTX 열기
using (Annotator annotator = new Annotator("annotated.pptx"))
{
// 모든 주석 가져오기
List<AnnotationBase> annotations = annotator.Get();
// 각 주석 검사하기
foreach (AnnotationBase annotation in annotations)
{
System.Console.WriteLine(annotation.Message);
}
// 프레젠테이션 저장
annotator.Save("output.pptx");
}
GroupDocs.Annotation for .NET은(는) 다양한 파일 형식의 문서에 주석을 지원합니다: