The getFields
method returns LuaField objects where each object represents a field that matches the specified name.
getFields( name [, case])
Argument | Description |
---|---|
name
|
(string) The name of the field. |
case
|
(boolean) A boolean that specifies whether the name argument is case-sensitive. The name is case sensitive by default (true ). |
(LuaFields) One LuaField for each matching field. To map the return values to a table, surround the function call with braces. For example:
fields = { document:getFields( name ) }
|