ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / PDF Reader functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
<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.
Example
// Surligne toutes les occurrences de "WINDEV" dans un champ lecteur PDF en jaune
PDF_LECTEUR_PDF.Surligne("WINDEV", LightYellow, WholeWord)
// Surligne toutes les occurrences de "WEBDEV" en bleu
PDF_LECTEUR_PDF.Surligne("WEBDEV", LightBlue, WholeWord)
// Surligne toutes les occurrences de "WINDEV Mobile" en orange
PDF_LECTEUR_PDF.Surligne("WINDEV Mobile", LightOrange, WholeWord)
// Supprime tous les surlignages
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:
IgnoreCaseCase and accent insensitive search (ignores uppercase/lowercase differences).
WholeWordSearches 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
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/20/2025

Send a report | Local help