PdfToTextConverterFindTextAsync(Byte, String, Boolean, Boolean, CancellationToken) Method
Asynchronously searches for the specified text in all pages of a PDF document
Namespace: Winnovative.Pdf.NextAssembly: Winnovative.Pdf.Next.PdfProcessor (in Winnovative.Pdf.Next.PdfProcessor.dll) Version: 20.0.0
public Task<FindTextLocation[]> FindTextAsync(
byte[] pdfData,
string textToFind,
bool caseSensitive,
bool wholeWord,
CancellationToken ct = default
)
- pdfData Byte
- Memory buffer containing the PDF document
- textToFind String
- Text to find
- caseSensitive Boolean
- Flag indicating whether the search should match case
- wholeWord Boolean
- Flag indicating whether the search should match whole words
- ct CancellationToken (Optional)
-
A cancellation token that can be used to cancel the asynchronous operation. When cancellation
is requested the task returned by this method will complete by throwing
OperationCanceledException as soon as possible
TaskFindTextLocationRecords containing the locations of the searched text in PDF pages