AnnotationRedaction
내용물
[
숨다
]
AnnotationRedaction class
주어진 정규 표현식과 일치하는 주석 텍스트(주석 등)를 대체하는 편집을 나타냅니다.
public class AnnotationRedaction : Redaction
생성자
이름 | 설명 |
---|---|
AnnotationRedaction(Regex, string) | AnnotationRedaction 클래스의 새 인스턴스를 초기화합니다. |
AnnotationRedaction(string, string) | AnnotationRedaction 클래스의 새 인스턴스를 초기화합니다. |
속성
이름 | 설명 |
---|---|
override Description { get; } | 교정 및 해당 매개 변수를 설명하는 문자열을 반환합니다. |
Expression { get; } | 일치시킬 정규식을 가져옵니다. |
Replacement { get; } | 일치하는 텍스트에 대한 대체 텍스트를 가져옵니다. |
행동 양식
이름 | 설명 |
---|---|
override ApplyTo(DocumentFormatInstance) | 지정된 형식 인스턴스에 교정을 적용합니다. |
비고
더 알아보기
예
다음 예는 모든 주석에서 “John"이라는 이름을 “[redacted]“로 바꾸는 방법을 보여줍니다.
using (Redactor redactor = new Redactor(@"C:\test.pdf"))
{
redactor.Apply(new AnnotationRedaction("(?im:john)", "[redacted]"));
redactor.Save()
}
또한보십시오
- class Redaction
- 네임스페이스 GroupDocs.Redaction.Redactions
- 집회 GroupDocs.Redaction