Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxPDFDocumentTextSearchStatus Enum

Enumerates states of the text search operation within a PDF document.

#Declaration

Delphi
TdxPDFDocumentTextSearchStatus = (
    tssFound,
    tssNotFound,
    tssFinished
);

#Members

Name
tssFound
tssNotFound
tssFinished

#Remarks

Options include:

Value Description
tssFound A text search method (such as the PDF Viewer‘s TextSearch.Find and Document.FindText functions) found one of the matching text strings within the loaded document.
tssNotFound No matching text strings were found in the document.
tssFinished The last or the only text string match is found within the document.

The TdxPDFDocumentTextSearchStatus type is referenced by the Status field of the TdxPDFDocumentTextSearchResult record.

Note

The PDF Viewer’s TextSearch.Find and Document.FindText procedures that return an array of text ranges corresponding to all found text matches do not provide information on the text search state.

See Also