API Reference

Class

PdfRedactionSearchOptions

Namespace OfficeIMO.Pdf
Assembly OfficeIMO.Pdf
Modifiers sealed

Explicit criteria used to derive reviewable redaction rectangles from logical content.

Inheritance

  • Object
  • PdfRedactionSearchOptions

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

Methods

public PdfRedactionSearchOptions AddFormField(params String[] fieldNames) #
Returns: PdfRedactionSearchOptions

Adds fully qualified AcroForm field names.

Parameters

fieldNames System.String[] requiredposition: 0
public PdfRedactionSearchOptions AddLiteral(params String[] values) #
Returns: PdfRedactionSearchOptions

Adds literal text criteria.

Parameters

values System.String[] requiredposition: 0
public PdfRedactionSearchOptions AddLogicalKind(params PdfLogicalElementKind[] kinds) #
Returns: PdfRedactionSearchOptions

Adds logical element kinds such as Heading, ListItem, or TextBlock.

Parameters

kinds OfficeIMO.Pdf.PdfLogicalElementKind[] requiredposition: 0
public PdfRedactionSearchOptions AddRegex(params String[] patterns) #
Returns: PdfRedactionSearchOptions

Adds bounded regular-expression criteria.

Parameters

patterns System.String[] requiredposition: 0

Properties

public Boolean MatchCase { get; set; } #

Case-sensitive literal matching when true.

public TimeSpan RegexTimeout { get; set; } #

Timeout applied independently to every regular-expression match.

public RegexOptions RegexOptions { get; set; } #

Regular-expression options. CultureInvariant is recommended for reproducible plans.

public IList<String> LiteralText { get; } #

Literal text criteria.

public IList<String> RegularExpressions { get; } #

Regular-expression criteria.

public IList<String> FormFieldNames { get; } #

Fully qualified AcroForm field names whose widgets should be selected.

public ISet<PdfLogicalElementKind> LogicalElementKinds { get; } #

Logical element kinds whose text blocks should be selected.