|
|
|
|
|
HTMLEditorSearch (Function) In french: EditeurHTMLRecherche Searches for a string in an HTML Editor control. The search does not take into account the formatting of the string.
nbMot is int = 0
HTMLEditorSearch(EDHTML_MonEditeurHTML, "WINDEV", ...
EditeurHTMLRecherche_Callback, WholeWord + IgnoreCase)
INTERNAL PROCEDURE EditeurHTMLRecherche_Callback(nPos is int)
IF nPos = 0 THEN
Info("Nombre de WINDEV: " + nbMot)
RETURN
END
nbMot++
END
Syntax
HTMLEditorSearch(<HTML Editor control> , <Text to find> , <WLanguage procedure> [, <Options> [, <Maximum number>]])
<HTML Editor control>: Control name Name of the HTML Editor control used. <Text to find>: Character string Text to search for in the HTML Editor control. <WLanguage procedure>: Procedure name WLanguage procedure ("callback") executed for each element found. This procedure has the following format:
PROCEDURE <Nom de la procédure>(nPosition est un entier) where <nPosition> is an integer that corresponds to the position of the searched text with respect to the text without tags. This value can be used: At the end of the search, <nPos> is set to 0. <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 searched text must have the same case as the text to be found.. To perform a case-insensitive search, use the IgnoreCase constant. <Maximum number>: Optional integer Maximum number of elements to be found. Limits the search (for example, take into account only the first 5 elements found). Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|