Difference between revisions of "Lua:getForm"
Jump to navigation
Jump to search
m (moved getForm to Lua:getForm) |
m (Correct the example to list all forms (it was missing the first one)) |
||
(One intermediate revision by one other user not shown) | |||
Line 16: | Line 16: | ||
== Examples == | == Examples == | ||
− | for i = | + | for i = 0, getFormCount() - 1 do |
local frm = getForm(i) | local frm = getForm(i) | ||
print(frm.ClassName) | print(frm.ClassName) | ||
Line 25: | Line 25: | ||
=== Related Functions === | === Related Functions === | ||
− | * [[getFormCount]] | + | * [[Lua:getFormCount|getFormCount]] |
− | * [[getMainForm]] | + | * [[Lua:getMainForm|getMainForm]] |
− | * [[getSettingsForm]] | + | * [[Lua:getSettingsForm|getSettingsForm]] |
− | * [[getMemoryViewForm]] | + | * [[Lua:getMemoryViewForm|getMemoryViewForm]] |
− | * [[getLuaEngine]] | + | * [[Lua:getLuaEngine|getLuaEngine]] |
− | * [[registerFormAddNotification]] | + | * [[Lua:registerFormAddNotification|registerFormAddNotification]] |
Latest revision as of 09:00, 24 August 2020
function getForm(Index)
Returns the form at the specific index.
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
Index | integer | The index of the form to get |
Examples[edit]
for i = 0, getFormCount() - 1 do local frm = getForm(i) print(frm.ClassName) print(frm.Caption) end