Small company logo:
   History
 
Advertising banner:
 
 Field.List
Home • Help • Customization Tools • FCAS • Language Reference • Field.List
 
Purpose
Returns or assigns the List attribute of a list field.
Syntax
[Form].Field.List [= StringExpression]
The List attribute is stored as a semicolon-delimited list of strings. If the list is used in an enumerated list field, the values will be automatically assigned to each string in the list. Automatically generated numbers begin with 0 and increment one number for each item in the list. Numbers can also be assigned to the list items in an enumerated list.
Examples
Cat;Dog;Fish will be displayed in a list field as three separate strings (one string per list): Cat, Dog, and Fish.
Automatically generated numbers:
Cat     'returns 0
Dog     'returns 1
Fish    'returns 2
Assigned numbers:
Cat=100;Dog=23;Fish=7   
Cat 'returns 100
Dog 'returns 23
Fish 'returns 7