DeleteAnnotationRedaction Class |
Namespace: GroupDocs.Redaction.Redactions
The DeleteAnnotationRedaction type exposes the following members.
Name | Description | |
---|---|---|
![]() | DeleteAnnotationRedaction |
Initializes a new instance of DeleteAnnotationRedaction class, with settings to delete all annotations (matching everything).
|
![]() | DeleteAnnotationRedaction(String) |
Initializes a new instance of DeleteAnnotationRedaction class, deleting annotations matching given expression.
|
![]() | DeleteAnnotationRedaction(Regex) |
Initializes a new instance of DeleteAnnotationRedaction class, deleting annotations matching given expression.
|
Name | Description | |
---|---|---|
![]() | Description |
Returns a string, describing the redaction and its parameters.
(Overrides RedactionDescription.) |
![]() | Expression |
Gets the regular expression to match.
|
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(@"D:\test.docx")) { redactor.Apply(new DeleteAnnotationRedaction("(?im:(use|show|describe))")); redactor.Save() }