ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Word Processing functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Finds a character string in an entire Document variable.
Example
MonDocument is Document

tabFragments is array of docFragment = MonDocument.Find("%NomClient%")
// Remplacement de tous les "%NomClient%" par le nom du client
FOR EACH f OF tabFragments
	f.Texte = Client.Nom
END
MonDocument is Document

// Recherche du mot "BEAUGRAND" dans le texte 
// Sélectionne uniquement le premier trouvé pour changer sa couleur
tabFragments is array of docFragment = MonDocument.Find("BEAUGRAND")
IF tabFragments.Count >= 1 THEN
	// Positionnement du curseur au début du premier mot trouvé
	MonDocument.Cursor = tabFragments[1].StartPosition
	// Calcul de la longueur de la sélection
	MonDocument.SelectionLength = ...
				tabFragments[1].EndPosition - tabFragments[1].StartPosition+1
	// Modification de la couleur du texte
	tabFragments[1].Formatting.TextColor = PastelRed
	BREAK
END
Syntax
<Result> = <Document>.Search(<Text to find> [, <Options>])
<Result>: Array of docFragment variables
Array of docFragment variables corresponding to all the document fragments where the searched text was found.
<Document>: Document variable
Name of the Document variable to be used.
<Text to find>: Character string
Text to find in the document
<Options>: Optional constant (or combination of constants)
Search options:
IgnoreCaseCase and accent insensitive search (ignores uppercase and lowercase differences).
WholeWordWhole 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
Component: wd300mdl.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/20/2024

Send a report | Local help