Back to Devexpress

TdxPDFDocumentTextSearchStatus Enum

vcl-dxpdfdocument-add154a9.md

latest1.8 KB
Original Source

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:

ValueDescription
tssFoundA 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.
tssNotFoundNo matching text strings were found in the document.
tssFinishedThe 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

dxPDFDocument Unit