Create a TextFindCriteria object with given properties.

Namespace: TallComponents.PDF.TextExtraction
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
public TextFindCriteria(
	string text,
	bool matchWholeWord,
	bool matchCase,
	bool backwards
)
Visual Basic
Public Sub New ( _
	text As String, _
	matchWholeWord As Boolean, _
	matchCase As Boolean, _
	backwards As Boolean _
)

Parameters

text
Type: System..::..String
Find this text.
matchWholeWord
Type: System..::..Boolean
Find only whole occurrences.
matchCase
Type: System..::..Boolean
Find only occurrences that match case.
backwards
Type: System..::..Boolean
Search backwards (otherwise forwards).

See Also