grandMA3 User Manual Publication
ConfigTable()

grandMA3 User Manual » Plugins » Lua Functions - Object-Free API » ConfigTable()
Version 2.1

Description

The ConfigTable Lua function returns a table with some configuration information. These are 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 kay value pairs with configuration information. See the example below.

Example

This example prints the content of the returned table.

Lua
return function ()
-- Prints the content of the ConfigTable
for key,value in pairs(ConfigTable()) do
Printf(key .. " : " .. value)
end
end