[]
Applies all RedactAnnotations to the current document.
public void Redact(RedactOptions redactOptions = null)
Public Sub Redact(Optional redactOptions As RedactOptions = Nothing)
Type | Name | Description |
---|---|---|
RedactOptions | redactOptions | Specifies the additional redact options. If null, the default settings are used. |
Applies a list of specified RedactAnnotations to the current document.
public void Redact(IList<RedactAnnotation> redactAnnotations, RedactOptions redactOptions = null)
Public Sub Redact(redactAnnotations As IList(Of RedactAnnotation), Optional redactOptions As RedactOptions = Nothing)
Type | Name | Description |
---|---|---|
IList<RedactAnnotation> | redactAnnotations | The list of RedactAnnotation objects to apply. |
RedactOptions | redactOptions | Specifies the additional redact options. If null, the default settings are used. |
Applies a specified RedactAnnotations to the current document.
public void Redact(RedactAnnotation redactAnnotation, RedactOptions redactOptions = null)
Public Sub Redact(redactAnnotation As RedactAnnotation, Optional redactOptions As RedactOptions = Nothing)
Type | Name | Description |
---|---|---|
RedactAnnotation | redactAnnotation | The RedactAnnotation object to apply. |
RedactOptions | redactOptions | Specifies the additional redact options. If null, the default settings are used. |