|
|
|
|
|
ControlFindHighlight (Function) In french: ChampRechercheSurligne Highlights, in a window or control, all the captions and texts corresponding to a given text.
ControlFindHighlight(FEN_Recherche, SAI_Recherche)
Syntax
<Result> = ControlFindHighlight(<Element> , <Searched text> [, <Search options> [, <Highlight color>]])
<Result>: Integer - Number of occurrences found in the control or window.
- 0 if no element contains the searched text.
<Element>: Character string Name of the element where the search will be performed. This element can correspond to: - a window name. The search is then carried out in field labels, button text, edit control text, table line text, etc. All visible fields with no invisible parent are searched.
- a control name. If this element corresponds to a Ribbon control, the search is performed in all ribbon controls.
<Searched text>: Character string - Text that must be found in the specified element.
- "" (empty string) to cancel the search.
<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 (enclosed in punctuation characters or spaces) | 0 | Search while taking the case into account (uppercase/lowercase characters) on a text "contained in". |
By default, no option is selected: the search is case sensitive and is performed on incomplete words.. <Highlight color>: Integer or constant (optional) Color used to highlight the occurrences found. This color can correspond to:Note: The default color is light yellow. Remarks - A single search can be performed at a given time in a control or in a window.
- The search is not performed in the following controls:
- HTML control and edit control in HTML format.
- ActiveX control.
- Zone not displayed in the Looper controls, List Box controls, Table controls.
- List, table or popup displayed by the combo boxes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|