|
|
|
|
|
PDFReaderSeekFirst (Function) In french: LecteurPDFRecherchePremier Initializes the search for a text in a PDF file displayed by the PDF Reader control and positions on the first occurrence found (from the current page). The text found is selected.
PDFReaderSeekFirst(PDF_MonLecteurPDF, "société")
IF PDFReaderSeekNext(PDF_MonLecteurPDF) = False THEN
Info("Recherche terminée")
END
PDFReaderSeekPrevious(PDF_MonLecteurPDF)
Syntax
<Result> = PDFReaderSeekFirst(<PDF Reader control> , <Text to find> [, <Options>])
<Result>: Boolean - True if the text was found in the document,
- False if the text was not found.
<PDF Reader control>: Control name Name of PDF Reader control to use. <Text to find>: Character string Text to find in the content of PDF Reader control. <Options>: Optional constant (or combination of constants) Search options: | | IgnoreCase | Case and accent insensitive search (ignores uppercase and lowercase differences). | WholeWord | Whole word search (enclosed in punctuation characters or spaces). |
By default, the search is case sensitive: the text searched for must have the same case as the text to be found. To perform a case-insensitive search, use the IgnoreCase constant. Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|