The
Items property is used to configure the different items of a full-text index. You can:
- Find out the different items of a full-text index (defined in the data model editor or through programming).
- Define the different items of a full-text index (when the full-text index is described through programming).
// Describe the full-text index
MyFullTextIndex.MinimumLength = 4
MyFullTextIndex.Name = "FullTextIndex1"
MyFullTextIndex.Items = "LASTNAME+FIRSTNAME"
MyFullTextIndex.AccentSensitive = True
MyFullTextIndex.CaseSensitive = False
HDescribeFullTextIndex(AFile, MyFullTextIndex)
...
Syntax
Finding the expression of a full-text index Hide the details
<Index expression> = <Data file>.<Full-text index>.Items
<Index expression>: Character string
Name of the different items included in the full-text index. These names of items are separated by the "+" character.
<Data file>: Control name
Name of the data file used. This name was defined in the data model editor or with the File Description type.
<Full-text index>: Character string
Name of full-text index used. This name was defined in the data model editor or with the FullTextIndex Description type.
Defining the expression of a full-text index Hide the details
<Full-text index>.Items = <New expression>
<Full-text index>: Character string
Name of full-text index used. This name was defined by the FullTextIndex Description type.
<New expression>: Character string
Name of the different items included in the full-text index. These names of items are separated by the "+" character.