HotXLS 문서

ClearComments 메서드

지정된 범위에서 모든 셀 주석을 지웁니다

구문

procedure ClearComments;

예제

이 예제는 통합 문서를 제공하기 전에 보고서 본문에서 검토 주석을 제거합니다

var
  ReportBody: IXLSRange;
begin
  ReportBody := Workbook.Sheets[1].Range['A2', 'H40'];
  ReportBody.ClearComments;
  Workbook.SaveAs('C:\Reports\customer-copy.xls');
end;

참고 항목