AnnotationRedaction Class |
Namespace: GroupDocs.Redaction.Redactions
The AnnotationRedaction type exposes the following members.
Name | Description | |
---|---|---|
![]() | AnnotationRedaction(String, String) |
Initializes a new instance of AnnotationRedaction class.
|
![]() | AnnotationRedaction(Regex, String) |
Initializes a new instance of AnnotationRedaction class.
|
Name | Description | |
---|---|---|
![]() | Description |
Returns a string, describing the redaction and its parameters.
(Overrides RedactionDescription.) |
![]() | Expression |
Gets the regular expression to match.
|
![]() | Replacement |
Gets a textual replacement for matched text.
|
Name | Description | |
---|---|---|
![]() | ApplyTo |
Applies the redaction to a given format instance.
(Overrides RedactionApplyTo(DocumentFormatInstance).) |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
using (Redactor redactor = new Redactor(@"C:\test.pdf")) { redactor.Apply(new AnnotationRedaction("(?im:john)", "[redacted]")); redactor.Save() }