Table of Contents

Method Find

Namespace
DocWright.Reporting.Viewer
Assembly
DocWright.Reporting.Viewer.dll

Find(string)

Finds every occurrence of a term, with the default options.

public IReadOnlyList<ReportSearchHit> Find(string text)

Parameters

text string

The term.

Returns

IReadOnlyList<ReportSearchHit>

The hits, in report order.

Find(string, ReportSearchOptions?)

Finds every occurrence of a term.

public IReadOnlyList<ReportSearchHit> Find(string text, ReportSearchOptions? options)

Parameters

text string

The term.

options ReportSearchOptions

How to match, or null for the defaults.

Returns

IReadOnlyList<ReportSearchHit>

The hits, in report order.

Exceptions

ArgumentNullException

text is null.