|
|
|
|
|
<Word Processing>.Seek (Function) In french: <Traitement de texte>.Recherche Finds a character string in an entire Word Processing control. tabFragments is array of docFragment = TT_MonDocument.Recherche("%NomClient%")
FOR EACH f OF tabFragments
f.Texte = Client.Nom
END
tabFragments is array of docFragment = TT_SansNom1.Recherche("BEAUGRAND")
IF tabFragments.Count >= 1 THEN
TT_SansNom1.Curseur = tabFragments[1].StartPosition
TT_SansNom1.LongueurSélection = ...
tabFragments[1].EndPosition - tabFragments[1].StartPosition+1
tabFragments[1].Formatting.TextColor = PastelRed
BREAK
END
Syntax
<Result> = <Word Processing control>.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. <Word Processing control>: Control name Name of the Word Processing control to use. <Text to find>: Character string Text to find in the control. <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 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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|