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

TdxPDFDocumentTextSearchProgressEvent Type

The procedural type for the events designed to track the search operation progress.

#Declaration

Delphi
TdxPDFDocumentTextSearchProgressEvent = procedure(Sender: TdxPDFDocument; APageIndex: Integer; APercent: Integer) of object;

#Parameters

Name Type Description
Sender TdxPDFDocument

The PDF document container that raised the event.

APageIndex Integer

The index of the previously processed document page. You can use the document container’s PageCount property to obtain the total number of pages.

APercent Integer

The percentage value that indicates the progress of the current text search operation. The parameter value is calculated by dividing the number of processed pages by the document’s PageCount property value multiplied by 100.

#Remarks

The following public API members reference the TdxPDFDocumentTextSearchProgressEvent type:

See Also