The getFieldValues
method gets all values from all fields that have the same name.
getFieldValues( fieldname [, case])
Argument | Description |
---|---|
fieldname
|
(string) The name of the field. |
case
|
(boolean) A boolean that specifies whether fieldname is case-sensitive. The argument is case sensitive by default (true ). |
(Strings). Strings that contain the values. To map the return values to a table, surround the function call with braces. For example:
fieldvalues = { document:getFieldValues( fieldname ) }
|