Table of Contents
VText Class: Properties
VText.IndexByWords
Declaration:
IndexByWords as Boolean
Description:
This property allows to set or get value of the IndexByWords flag of the field. IF this flag is TRUE then string value of the field is indexed by separate words. If it is FALSE, then first 255 chars are indexed as a single string.
Example:
fldText.IndexByWords = true
VText.Value
Declaration:
Value as String
Description:
This property allows to get/set a string value of the TEXT field.
Example:
fldText.Value = "This is some big string"
tblT1.AddRecord()