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