PdfTextExtractSearchText(String, String, Int32, Int32, Boolean, Boolean) Method

Call this method search a text in a range of pages of a PDF file

Definition

Namespace: HiQPdfClient
Assembly: HiQPdfClient.NetCore (in HiQPdfClient.NetCore.dll) Version: 16.0.0
C#
public PdfTextSearchItem[] SearchText(
	string pdfFile,
	string text,
	int firstPdfPageNumber,
	int lastPdfPageNumber,
	bool matchCase,
	bool matchWholeWord
)

Parameters

pdfFile  String
The fully qualified name of the PDF file
text  String
The text to search
firstPdfPageNumber  Int32
The first PDF page number
lastPdfPageNumber  Int32
The last PDF page number
matchCase  Boolean
Controls if the search should match case
matchWholeWord  Boolean
Controls if the search should match whole words

Return Value

PdfTextSearchItem
An array containing the searched text instances in PDF document

See Also