TdxPDFDocumentTextSearchProgressEvent Type
In This Article
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 | Tdx |
The PDF document container that raised the event. |
APage |
Integer | The index of the previously processed document page. You can use the document container’s Page |
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 Page |
#Remarks
The following public API members reference the TdxPDFDocumentTextSearchProgressEvent
type:
- The PDF Viewer control’s OnSearchProgress event.
- The PDF document container‘s OnSearchProgress event.
See Also