# ConfigTable()

Source: https://help.malighting.com/grandMA3/2.3/HTML/lua_objectfree_configtable.html
This is grandocs, an unofficial mirror of MA Lighting documentation. For authoritative or safety-relevant information, cite the canonical page on help.malighting.com.

---
## Description

The **ConfigTable** Lua function returns a table with some configuration information. This is information only. The function does not have any actual functions. The table is not sorted.

## Arguments

This function does not accept any arguments.

## Return

- **Table**:\
  The returned table contains key value pairs with configuration information. See the example below.

## Example

This example prints the content of the returned table.

|                                                                                                                                                                        |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Copy Code](javascript:void\(0\))Lua                                                                                                                                   |
| ```
return function ()
    -- Prints the content of the ConfigTable
    for key,value in pairs(ConfigTable()) do
        Printf(key .. " : " .. value)
    end
end
``` |