|
|
|
|
|
<PDF Reader>.Highlight (Function) In french: <Lecteur PDF>.Surligne Finds a text in the document displayed by a PDF Reader control and highlights the occurrences of this text in the control.
PDF_LECTEUR_PDF.Surligne("WINDEV", LightYellow, WholeWord)
PDF_LECTEUR_PDF.Surligne("WEBDEV", LightBlue, WholeWord)
PDF_LECTEUR_PDF.Surligne("WINDEV Mobile", LightOrange, WholeWord)
PDF_LECTEUR_PDF.Surligne("")
Syntax
<Result> = <PDF Reader control>.Highlight(<Searched text> [, <Color> [, <Search options>]])
<Result>: Integer - Number of text occurrences found in the control.
- 0 if no element contains the searched text.
<PDF Reader control>: Control name Name of PDF Reader control to use. <Searched text>: Character string - Text that must be found in the specified element.
- "" (empty string) to cancel the search.
<Color>: Integer, constant or optional Color variable Color used to highlight the occurrences found. This color can correspond to:Note: The default color is light yellow. <Search options>: Optional Integer constant Indicates the search options: | | IgnoreCase | Case and accent insensitive search (ignores uppercase/lowercase differences). | WholeWord | Searches for a whole word (between punctuation characters or spaces). |
By default, no option is selected: the search is case sensitive and is performed on incomplete words.. Remarks - As long as this function is not called with an empty string ("") to stop the highlighting, all new calls will add an additional highlighting.
Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|