AppliedDocIDsFullTextSearch
Retourne la liste des ID des documents en application correspondant à une recherche plein texte
Syntaxe
function AppliedDocIDsFullTextSearch(fullTextSearchQuery: String): String
fullTextSearchQuery: chaîne de recherche plein texte
Remarques
Les IDs sont renvoyés sous la forme d'IDs séparés par des points-virgules (format TIntegerList.AsString).
Une recherche plein texte sur une chaîne vide ne renvoie rien.
Exemples
// Affichage de toutes les RUD des documents qui correspondent à une recherche plein texte donnée :
var s : String;
var lst:=TIntegerList.Create;
lst.AsString := AppliedDocIDsFullTextSearch('mon texte');
for var i:=0 to lst.Count-1 do
s += DocRUDForDocID(lst[i])+#13#10;
InformationDlg(s);
var s : String;
var lst:=TIntegerList.Create;
lst.AsString := AppliedDocIDsFullTextSearch('mon texte');
for var i:=0 to lst.Count-1 do
s += DocRUDForDocID(lst[i])+#13#10;
InformationDlg(s);