Skip to main content

TdxPDFDocumentTextSearchProgressEvent Type

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

Declaration

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